@import url('https://fonts.googleapis.com/css2?family=Schoolbell&display=swap');

body {
  margin: 0;
  padding: 0;
  background: #FDDBFA url(https://tatyanasippy.neocities.org/images/pastel%20stars.png);
  background-attachment: fixed;
  line-height: 133%;
  font-size: 15px;
  font-family: "Schoolbell", cursive;
  text-shadow:0px 0px 1px;
  color: #131223;
  }
  
  /* cursor */
 html {
  cursor: url('https://tatyanasippy.neocities.org/images/milou-cursor.png'), default;
 }
  
  
/*Miscellanous custom styling for various elements.*/
h1, h2, h3 {
  font-family: "Schoolbell", cursive;
  }
  
a {
  color: #84007D;
  }

a:hover, a:focus {
  color: #666;
  transition: ease-in 0.1s, ease-out 0.1s;
  }
  
blockquote {
  border-left: #E9E789 3px solid;
  background: #FFFECA;
  padding: 0.1px 0.75rem;
  margin: 0 1.5rem;
  }

hr {
  width: 75%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  }
  
  ::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #FDDBFA;
}

::-webkit-scrollbar-thumb {
  background: #FDDBFA;
  border: 2px solid #FF7FF5;
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: #FFB9F9;
}
  
.navbar {
  padding: 1px 25px;
  }
  
.navbar a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 5px 4px;
  margin: 0 2px;
  }
  
.navbar a:hover, .footer a:hover, .navbar a:focus, .footer a:focus {
  color: #666;
  transition: ease-in 0.1s, ease-out 0.1s;
  }
  
  
/*Header image.*/
.header {
  height: 100px;
  background-image: url('https://tatyanasippy.neocities.org/images/cicero%20and%20friends.png');
background-repeat: no-repeat; 
  background-position: center center; 
  }
  
 /*Title bar with icon and title/tagline.*/
.title {
  background: url('https://pix.crd.co/assets/images/gallery22/dc738186.gif?v=15eb4270'); height:30px;width:100%;
  min-height: 10px;
  margin-bottom: -25px;
  text-align: right;
  }
  
.title-text, .title-pic {
  padding:0;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  }
  
/*Contains the text tagline.*/
.title-text {
  padding-right: 1em;
  width: calc(85vw - 110px);
  line-height: 167%;
  margin-top: -3px;
  padding-bottom: 15px;
  }
  
.title-text h1 {
  padding:0;
  font-size: 32px;
  }
  
/*Contains the profile pic. This can be left out and should still look okay.*/
.title-pic {
  height: 100px;
  margin-right: 100px;
  margin-top: -50px;
  border: 0px solid #FDDBFA;
  border-radius: 0px;
  }
  
.title-pic img {
  height: 100%;
  overflow: visible;
  }
  
/*Contains the main content and sidebar.*/
.page-wrapper {
  padding: 0 100px;
  margin: 0 auto;
  }

/*Contains the sidebar boxes.*/
.sidebar {
  width: 320px;
  margin: 50px 0;
  position: absolute;
  }
  
.sidebar h1 {
  font-size: 1.2rem;
  background: #CAFDFF;
  border: 5px dashed #fff;
  color: #008087;
  padding: 12px 10px 10px 10px;
  margin: auto;
  }
  
.sidebar a {
  display: block;
  border-left: 3px solid #FDDBFA;
  background: #FFEAFF;
  padding: 5px;
  margin: 10px 0;
  color: #84007D;
  text-decoration: none;
  }
  
.sidebar a:hover, .sidebar a:focus {
  background: #FF85F9;
  transition: ease-in 0.1s, ease-out 0.1s;
  }
  
.sidebar, .main {
  display: inline-block;
  }

/*Contains main content boxes.*/
.main {
  margin: 50px 100px 50px 350px;
  width: auto;
  width: calc(100vw - 550px);
  }
  
  
/*Basic container type for subsections of main and sidebar divs*/
.box {
  margin-bottom: 15px;
  }
  
/*Inner content div for boxes. Padding goes here so sidebar headers etc can keep their no-margin look.*/
.inner {
  background:  #FFFEE6;
  border: 5px dashed #fff;
  padding: 10px 25px;
  }

.inner img {
  max-width: 100%; /*Prevent image overflow.*/
  height: auto;
  border-radius: 5px; /*Give images in content rounded corners.*/
  }
  
.box, .title-pic img {
  border-radius: 5px;
  overflow: visible; /*Force inner divs to conform to rounded corners.*/
  }
  
  
/*Footer section.*/
.footer {
  background: #FDDBFA;
  color: #84007D;
  padding: 5px 20px;
  font-size: 15px;
  text-align: center;
  padding-bottom: 10px;
  }
  
.footer a {
  color: #690082;
  }

/*Individual column of the footer. You can have 3 of these at the current given width.*/
.footer-column {
  width: 25%;
  margin: 5px 10px;
  display: inline-block;
  vertical-align: top;
  }


/*Adapt to narrower screens.*/
@media(max-width: 900px) {
  .page-wrapper {
    padding: 0 50px;
    }
  
  .sidebar {
    width: 25vw;
    }
    
  .main {
    margin: 50px 0 50px calc(25vw + 30px);
    width: calc(75vw - 150px);
    }
    
  .title-pic {
    margin-right: 7vw;
    }
    
  .title-text {
    padding-left: 1vw;
    padding-right: 2vw;
    }
  
  }
  
/*Mobile layout.*/
@media(orientation: portrait) {  
  .page-wrapper {
    padding-top: 0.1px;
    padding-bottom: 0.1px;
    }
  
  .sidebar, .main {
    display: block;
    margin: 0 auto;
    position: static;
    width: 100%;    
    }
    
  .sidebar {
    margin-top: 50px;
    }
    
  .main {
    margin-top: 30px;
    margin-bottom: 30px;
    }
    
    
  }
  
/***
For really narrow screens which cause the title text to wrap. 
You may need to adjust the width at which this kicks in to fit 
your own title.
***/
@media(max-width: 500px) {
  .header {
    height: 60vw;
    }
  
  .title {
    padding-right: 0;
    }
  
  .title-text {
    margin-top: -5px;
    }
    
  .title-text h1 {
    font-size: 6vw;
    line-height: 75%;
    }
    
  .title {
    height: calc(auto - 25px);
    }
    
  .page-wrapper {
    padding: 0.1px 7vw;
    }
    
  /*For extra narrow screens where the columns would get too skinny.*/
  .footer-column {
    display: block;
    width: 100%;
    margin: 0 auto;
    }
  }