/* 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." */

@font-face {
  font-family: PixelOperator;
  src: url("PixelOperator.ttf");
}

body{
  background-image: url("OCOp.gif");
  background-size: cover;
  font-family: "PixelOperator";
  color: white;
  cursor: url(https://cur.cursors-4u.net/food/foo-7/foo647.cur), auto;
   
  }

#container{
 margin: auto;
 width: 40%;
 min-width:750px;
 
}

#topbar, footer, .content{
  background-color: black;
  }
  
  .content{
    margin-bottom: 1%;
    padding-bottom: 1%;
    }

#topbar{
  border: 0.5px double white;
  margin: 1%;
  text-align: right;
  font-size: 1.5em;
  padding: 1%;
  display: flex;
  align-items: center;
  
  }
  #topbar .image, #topbar .text{
    flex-grow: 1;
    }
  #topbar .image{
    text-align: left;
    }
  
    
    .topbar-img{
      height: 100px;
      }
  
  .head{
   background-image: url("crt.jpg");
   background-size: contain;
   color: white;
   font-weight: 800;
    }
  
  
  
main, aside{
  margin-top: 0;
  padding-top:0;
  
  }
 main{
   width: 69%;
   } 
   
   aside{
     width: 30%;
     }
     
    
  
  .flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    }

footer{
  margin-top: 1%;
  }
#buttons{
  text-align:center;
}

.red{
  color:red;
  }
  
.blue{
  color: blue;
  }
  
  .green{
    color: lime;
    }
    
    .blingees{
      width: 100%;
      text-align: center;
      }
      
      .blingees img{
        max-width:90%
        }
.nav-img{
  margin-left: 1%;
  width: 50px;
  }
  
  .marquee{
    background-color: black;
    border-radius: 5px;
    }
  
  
  .img-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    }
    
    .photo{
      width: 48%;
      padding: 1%;
      }
      
      
      .library{
        padding: 10px;
        }
      .spine{
        height: 300px;
        }
      
      
      .btn{
        width:88px;
        height:31px;
        }
      .tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


.photoArt img{
  width: 90%;
  }