/*simple reset*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 1.44rem;
    line-height: 1.44;
    height: 100%;
}
h1 {
    font-size: 4.209rem;
}
h2 {
    font-size: 3.157rem;
}
h3 {
    font-size: 1.777rem;
    width: 508px;
    height: 253px;
    flex-shrink: 0;
    color: #F5F5F5;
    font-family: "Instrument Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;  
}

h4 {
  color: #F5F5F5;
  font-family: "Irish Grover";
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  }  

    h5 {
      color: #F5F5F5;
      font-family: "Irish Grover";
      font-size: 45px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      text-align: center;
      margin-top: 2rem;
    }

  h4.red{
    color: #890F0F;
  }

    h5.red {
      color: #890F0F;
    }

    h5.black {
      color: #000000;
    }

    h5.blue {
      color: #2D0E8A;
    }

  h4.black{
    color: #000000;
  }

  h4.favsong{
    text-align: center;
  }

  h4.black{
    color: #000000;
  }

  h4.blue{
    color: #2D0E8A;
  }

pre,
code {
    font-size: 1.2rem;
    font-family: Consolas, "Andale Mono", "Lucida Console", "DejaVu Sans Mono", "Courier New", monospace;
    color: rgba(255, 255, 255, 0.75);
    white-space: pre-wrap;
}
small{
    font-size: 0.777rem;
}

strong {
    color: rgba(255, 162, 87, 1);
  }
  
  ul {
    margin: 0 1.44em;
  }
  
  /* end of reset */

/*basic styling */
body{
    min-height: 110vh;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: rgba(240, 240, 240, 1);
    background-color: rgb(134, 162, 226);
}

h1,
h2,
h3{
flex-shrink: 0;
color: #F5F5F5;
font-family: "Instrument Sans";
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: normal;
}


/* anchor tag pseudo elements */

main a{
  text-align: center;
    display: block;
}
a:link,
a:visited {
    color: rgba(255, 255, 255, 0.85);
    /*transition: color 0.5s;*/
}

a:hover,
a:focus {
    color:rgb(182, 193, 230);
    text-decoration: none;
    /*background-color: rgba(240, 240, 240, 0.15);*/
}

a:active {
    color: rgba(151, 193, 234, 0.85);
  }
  
  /* end of basic styling */
  
  header {
    position: relative;
    top: 0;
    right: 0;
    padding: 0.5em;
    width: 100%;
    height: 75px;
    display: grid;
    grid-template-columns: 1fr auto;
    text-align: center;
    background-color: rgb(11, 37, 211);
    font-family: "Instrument Sans";
    font-weight: 400;
    color: #f1f1f1;
    letter-spacing: 1px;
  }
  
  header h1 {
    font-size: 1.44em;
    display: inline-block;
  }
  header nav a {
    padding: 0.5em;
    line-height: 1.44rem;
  }
  
  main {
    padding: 0.5em;
    margin-top: 1rem;
  }

  #musicnotes:hover {
    transform: scale(2);
}

img#musicnotes{
  width: 350px;
}


#theweeknd:hover {
    animation-name: rotate;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#tatemcrae:hover {
  animation-name: rotate;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#chaseatlantic:hover {
  animation-name: rotate;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotate{
  from{ transform: rotate(-360deg); }
  to{ transform: rotate(360deg); }
}

nav{
font-family: "Instrument Sans";
text-align: center;
}

.column1{
  display: grid;
  grid-template-columns: 1fr;
}

.musicnotes{
  display: flex;
  justify-content: center;
  text-align: center;
  min-width: 100px;
}

footer{
  text-align: center;
  font-family: "Instrument Sans";
}

img#theweeknd{
  width: 100%;
}

img#tatemcrae {
  width: 100%;
}

img#chaseatlantic {
  width: 100%;
}

@media (min-width: 796px){
  .column1 {
      grid-template-columns: 1fr 1fr;
    }
}

html {
  scroll-behavior: smooth;
}
  