@font-face {
  font-family: "astloch-regular";
  src: url("fonts/astloch-regular-webfont.woff2") format("woff2"),
    url("fonts/astloch-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

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


:root {
  --black: #c27361;
}

#preloader {
  background: var(--black)
    url("https://samherbert.net/svg-loaders/svg-loaders/spinning-circles.svg")
    no-repeat center;
  align-items: center;
  justify-content: center;
  width: 100%;
  display: flex;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 999;
}

h1{
  text-align:center;
  margin-bottom: 50px;
  margin-top: 50px;
}

h1 {
  font-size: 45px;
  font-family: "astloch-regular";
  text-decoration: none;
}

h1 a {
  color: black;
  text-decoration: none;
}


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

p{
   text-align:right;
  font-size:15px;
  font-family:helvetica;
   color:black; 
}


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

.container{
display: grid;
grid-template-columns: 0.4fr 1fr;
grid-template-rows: 1fr;
grid-column-gap: 0px;
padding:10px;
}

#info{
   grid-area: 1 / 2 / 1 / 2;
   text-align:right;
   margin-right:20px;
}

#music{
    grid-area: 1 / 1 / 1 / 1;
}

#music p{
 text-align:center; 
}


@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;
  }
  
  #info{
    grid-area:2/1/2/1;
  }
  
  #music{
       grid-area:1/1/1/1;
        margin-left: 10px;
  }
  
  h1{
    margin-bottom:0px;
      font-size: 30px;
  }
  
}