body{
    
    background-color: #3d3d3d;  
  background-image: url(/graphics/dark_planks.png);
    background-repeat: repeat;
    background-size: 6rem; 
    image-rendering: pixelated;


/*

    background-color: #f4d293; 
    background-image: url(/graphics/planks.png);
     background-repeat: repeat;
      background-size: 6rem; 
      image-rendering: pixelated;
*/
     color: rgb(97, 97, 97);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;

     font-family: Arial, Helvetica, sans-serif;
     font-weight: bold;

     display: flex;
     flex-direction: column;
     align-items: center;
}

.home-button{
    height: 3rem;
    width: 3rem;
}

.logo{
    width: 30rem;
    max-width: 90%;
}

.bookcases{
    padding: 2rem;
    display: flex;
    flex-direction: row;
    width: 95%;
    flex-wrap: wrap;
}

.bookcase{
    width: 14rem;
    height: 25rem;
    max-width: 90%;
    background-color: rgb(73, 60, 44);
    border-style: solid;
    border-width: 1rem;
    border-color: #9a6a51;
    margin: 1rem;
}

.bookcase h2{
    margin-top: 0;
    padding-bottom: 1rem;
    color: white;
    background-color:  #9a6a51;
    text-align: center;
}

.links{
    display: flex;
    flex-direction: column;
    
    overflow-x: hidden;
    overflow-y: auto;

    margin-top: -1.3rem;
    height: 21rem;
}

.bookcase a{
    min-height: 1.2rem;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 85%;
    background-color:  #737373;
    color: white;
    text-decoration: none;
    margin: 0.5rem;
    padding: 0.5rem;
}

a:hover{
    transform: translateY(-0.2rem);
}

.emoji{
    height: 1rem;
}