@font-face {
        font-family: "share tech mono";
        src: url(https://eventidings.neocities.org/share%20tech%20mono/sharetechmono-regular-webfont.woff);
      }

@font-face {
        font-family: "adorabledoll";
        src: url(https://eventidings.neocities.org/adorabledoll/adorabledoll-webfont.woff);
      }
      
body{
  color: white;
  background-image: url("https://foollovers.com/mat/star/a09-bg-star.gif");
  font-family: "share tech mono";
}

body h2{
  font-family: "adorabledoll"
}

/*filterDiv = styling for each individual album cover*/
.filterDiv{
    margin: 10px;
    display: none;
}

/*for javascript; adds to filterDiv to make album visible*/
.show{
    display: block;
}

/*genre buttons*/
.btn{
    font-family: "share tech mono";
    display: block;
    margin: 10px 10px 10px 10px;
    padding: 10px 10px;
    background-color: #dbcbb7;
    border-color: #5e4d35;
    border-style: outset;
    border-width: 2px;
    color: #5e4d35;
    cursor: pointer;  
}

/*organizes buttons into vertical list in sidebar*/
.btncontainer{
  text-decoration: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.btn:hover{
    background-color: #bbae9d;
}

/*justifies all content to left*/
/*separates main page from album review modal*/
.flexcontainer{
  display: grid;
  justify-content: left;
  grid-template-columns: auto 350px;
  grid-template-rows: auto auto;
}

/*layout of page*/
.container{
  display: grid;
  grid-template-columns: 150px 480px;
  grid-template-rows: 90px 500px;
  grid-gap: 10px;
  background-color: #daccb7;
  border-color: #5e4d35;
  border-style: double;
  border-width: 10px;
  padding: 10px 10px 10px 10px;
}

/*header*/
.header{
  display: flex;
  background-image: url("https://foollovers.com/mat/baf/frill/fr200-013-a.gif");
  background-size: auto 70px;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;
  padding: 7px 10px 10px 10px;
  
  grid-column: 1 / span 2;
}

/*main container showing albums*/
.main{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  border-style: solid;
  border-color: #2d1d07;
  border-width: 2px;
  background-color: #8d7d63;
  padding: 10px 10px 10px 10px;
  overflow: auto;
  
  grid-column: 2 / span 1;
}

/*sets height, width for album cover imgs*/
.main img{
  object-fit: cover;
  height: 130px;
  width: 130px;
  transition: transform 0.2s ease;
  border-style: double;
  border-color: white;
}

/*button associated with album images*/
.main button{
  background: none;
  border: none;
  height: 130px;
  width: 130px;
  padding: 0 0 0 0;
}

/*highlights album cover when hovered*/
.main button:hover img{
  transform: scale(1.05);
  opacity: 0.8;
}

/*container for genre buttons*/
.sidebar{
  border-style: solid;
  border-color: #2d1d07;
  border-width: 2px;
  background-color: #8d7d63;
  padding: 10px 10px 10px 10px;
  
  grid-column: 1 / span 1;
}

/*album review window that opens to the right of the page*/
.modal {
  grid-column: 2 / span 1;
  display: none;
  width: 100%;
  height: 450px;
  overflow: auto; 
  background-color: #dbcbb7;
  border-style: solid;
  border-color:#5e4d35;
  border-radius: 10px;
  margin: 10px 10px 10px 10px;
  padding: 10px 20px 10px 20px;
  color: #5e4d35;
}

.modal.show{
  display: block;
}

/*close modal button styling*/
.close {
  color: #8d7d63;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/*sets album image in modal*/
.albumImage{
  float: right;
  height: 25%;
  margin-top: 10px;
  margin-right: 10px;
  margin-left: 10px;
}