
html {
    background-color: black;
    color: #CBD0D9;
}
#kx-bgd {
    background: black url(../images/kx-bgd.svg) no-repeat left center;
      background-size: contain;
      position: fixed;
      top: 0;
      bottom: 0;
      width: 100%;
  }

  
  svg {
    height: 190px;
    z-index: 40;
    position: relative;
  }
main{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}
aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
section {
    padding-top: 20%;
}
h1, h2, h3, p {
    padding: 5px;
    margin: 0;
}
h1 {
    font-size: 45px;
    font-family: "Montserrat", sans-serif;
}
h2 {
    font-size: 25px;
    font-family: "Cambria", serif;
    font-weight: 200;
}
p {
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
}
img.hero {
    max-height: 100%;
}

#insta-logo {
    width: 30px;
    padding: 10px 0;
    opacity: 0.8;
    transition: ease-in 0.35s;
}


footer {
    display: flex;
    flex-direction: column;
    bottom: 1%;
    z-index:25;
}
footer a {
    width: 40px;
}
footer p {
    margin: 0;
    height: 20px;
    font-size: 0.8rem;
    font-family: Bookman Old Style;
    opacity: 0.5;
    padding: 0 15px;
}
footer p:hover{
    font-size: 0.8rem;
    opacity: 1;
    transition: ease-out 1s;
}




/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}

@media only screen and (max-width: 768px) {
    #kx-bgd {
        display: none;
    }
    main {
        
    flex-direction: column;
    }

    svg {
        height: auto;
        width: 80%;
        z-index: 40;
        position: relative;
      }
    h1 {
        font-size: 45px;
    }
    h2 {
        font-size: 25px;
        font-family: "Cambria", serif;
        font-weight: 200;
    }
    p {
        font-size: 15px;
    }
    img.hero {

        max-height: 70%;
        position: fixed;
        bottom: 0;
        z-index: 1;
    }
    aside {
        
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 2;
    }
    section {
        padding-top: 1%;
    }
}

