
/*
font-family: 'Josefin Sans', sans-serif;
font-family: 'Kalnia', serif;
*/

h1{
    font-family: 'Kalnia', serif;
    font-weight: 300;
    font-size: 80px;
}

h2{
    font-family: 'Josefin Sans', sans-serif;
    font-weight: thin;
    font-size: 60px;
}

h3{
    font-family: 'Josefin Sans', sans-serif;
    font-weight: regular;
    font-size: 40px;

}

p{
    font-family: 'Josefin Sans', sans-serif;
    font-weight: regular;
    font-size: 20px;


}
  
body {
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    background-color: #EEEEE6;
    min-height: 100vh;

  }

  .top-nav {
    position: fixed;
    padding: 20px;
    width: 100%;
    text-align: right;
    display: inline; 
    text-decoration: none;
    line-height: 20px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: thin;
    box-sizing: border-box;
    transition: background-color 0.3s; 
    z-index:90;
  }

  .top-nav a{
    color:#EEEEE6;
    text-decoration: none;
    margin-right: 20px;

  }
  
  .top-nav a:hover{
    color: #0E0A0A;
    text-decoration: none;
  }

  .top-nav.scrolled {
    background-color: #3A565F;
    color:#EEEEE6;

  }  
  
  .video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 100;
    transform: translate(-50%, -50%);
  }
  
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 110;
  }
  

  .parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-row-gap: 20px;
    margin: 100px 10px;
    }

    .body-right{
        margin: 80px 10px;
    }
  

  .footer {
    display: grid;
        grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    color: #9F2B00;
    position: relative;
    height: 150px;
    
    }

.footer h1{
    font-size: 20px;
}

.footer p{
    font-size: 15px;
}

.footer-right a {
  display: block; 
  width: 100%; 
  height: 100%;
}


.footer-right { 
        grid-area: 1 / 5 / 2 / 6;
        background-image: url(media/music\ theory\ logo.gif);
        background-size:contain;
        background-repeat: no-repeat;
        background-position: right;

       }

    .footer-center { 
        grid-area: 1 / 3 / 2 / 5; 
        position: absolute;
        top: 10%;
        margin: 0;
        
    }

    .footer-left { 
        grid-area: 1 / 1 / 2 / 3; 
        position: absolute;
        top: 10%;
        margin: 0;
        left:10px;


    }

