/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
* {
  box-sizing: border-box;
}

 body, html {
    padding:10px;
    background-image: url('icons/purplegalaxy.jpeg');
    background-repeat:repeat;
    font-family: Courier;
}

/* Header/Blog Title */
.header {
  padding: 20px;
  text-align: center;
  box-shadow:10px 10px;
  background-image: url('icons/pixelsky.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
          border:3px solid black;
}

.header h1 {
  font-size: 50px;
  font-family:fantasy;
}
.header h3 {
  font-family:serif;
  font-size:10px;
  letter-spacing:8px;
  background-color:pink;
    width:fit-content;
    text-shadow:0 0 10px #000, 0 0 15px #000, 0 0 20px #000;
  }
/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: transparent;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {  
  float: left;
  width: 75%;
  background-color: transparent;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  background-color: transparent;
  padding-left: 20px;
}

/* Add a card effect for articles */
.card {
  padding: 30px;
  margin-top: 20px;
  background-color:#CCD0E9;
  box-shadow:10px 10px;
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
          border:3px solid black;
}

 /* large bullet point icons*/
.icon {
 font-size:30px;
 }
 
.item {
  text-align: center;
}
 
/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
footer {
  margin-top:20px;
  padding: 20px;
  text-align: center;
  font-size:15px;
   background-color:#CCD0E9;
  box-shadow:10px 10px;
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
          border:3px solid black;
}


 /*library*/
      .container {
        background-color:#EAE0D7;
        margin-top:20px;
        margin-bottom:20px;
        position:relative;
        display:flex;
        flex-direction:column;
        align-items:center;
      }
   
   /* window */
   
    .window {
      display:flex;
      flex-direction:column;
      background-image: url(icons/window.png);
      background-repeat:no-repeat;
      margin:0;
      padding:0;
      min-height:100vh;
      max-height:512px;
      height:auto;
      max-width:512px;
      width:auto;
      }  
      
    .window-title {
      margin-left:40px;
      margin-top:0;
      padding:0 10px;
      line-height:1vh;
      flex-shrink:0;
      justify-content:flex-start;
      align-items:flex-start;
      min-height:20px;
      min-width:200px;
      color:black;
      font-family:courier;
      text-align:justify;
      }
      
    .window-text {
      padding:0;
      margin-top:0;
      margin:25px;
      line-height:4vh;
      max-height:400px;
      justify-content:flex-start;
      align-items:flex-start;
      overflow-y:auto;
      overflow-x:hidden;
      color:purple;
      font-family:roboto;
      font-size:1.5em;
      }
      
      
.box {
  justify-content:center;
  text-align:center;
  width:fit-content;
  padding:20px;
  background-color:#CCD0E9;
  box-shadow:10px 10px;
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
          border:3px solid black;
}
 
#stamp {
  border-width: 20px;
          border-style: solid;
          border-image: url("https://file.garden/ZZ2PUl9MPilKgIvB/collection/borders/fp9ci4.png") 8 fill round;
}




/*---Text Styling---*/
 
 .highlight {
    background-color:pink;
    width:fit-content;
    text-shadow:0 0 10px #000, 0 0 15px #000, 0 0 20px #000;
    }  
    
  .glow {
    color:#CCD0E9;
    text-shadow:0 0 10px #000, 0 0 15px #000, 0 0 20px #000; 
  }
  




/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}




