@font-face {
    font-family: 'Du Bellay';
    src: url('fonts/DuBellay.woff2') format('woff2'),
        url('fonts/DuBellay.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  background-image: url(bg/moregreen.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #564e27;
  }

main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.container{
display: grid;
grid-template-columns: 0.9fr 1fr 1fr;
grid-template-rows: 1fr;
grid-column-gap: 0px;
  padding-top:20px;
   padding-bottom:20px;
}

#lyrics{
  grid-area: 1 / 1 / 1 / 1;
  padding-left:10px;
    margin-top:20%;
}

#middle{
   grid-area: 1 / 2 / 1 / 2;

}

#info{
   grid-area: 1 / 3 / 1 / 3;
    padding-right:10px;
  text-align:right;
    margin-top:20%;
  margin-left:60px;
}

h1{
  text-align:center;
  font-family: 'Du Bellay';
  margin-bottom:200px;
  font-size:60px;
}

h1 a{
 color:#121008; 
 text-decoration:none;
}

h1 a:hover{
 color:#958953; 
 text-decoration:none;
}


h4{
  font-family:helvetica;
  fonts-size:20px;
   color:white; 
}

p{
  text-align:left;
  font-size:15px;
  font-family:helvetica;
   color:white; 
}

#box{
  border:1px solid black;
  padding:10px;
}


@media only screen and (max-width: 1080px) {
  .container{
      grid-template-columns: 1fr 1fr;
      height: 100vh;
        width: 100vw;
      grid-template-rows: 1fr 1fr;
    padding-bottom:0px;
  }
  
  #lyrics{
    grid-area:2/1/2/1;
  }
  
  #middle{
       grid-area:1/1/1/1;
        margin-left: 10px;
  }
  
  #info{
       grid-area:2/2/2/2;
    margin-left:5px;
  }
  
  h1{
    margin-bottom:0px;
      font-size: 50px;
  }
  
}