
html {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}


body {
    width: 100%;
    font-family: 'Open sans', sans-serif;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #41403e;
    color: aliceblue;
    padding: 0;
    border: 0;
}


a {
    text-decoration: none;
    color: white;
}


nav {
    height: 10vh;
    width: 96%;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 2%;
    background-color: rgba(0, 0, 0, 0.4);
}


nav > div:nth-child(1) {
    height: 10vh;
    width: 20vh;
}


nav > div:nth-child(1) > img {
    height: 5vh;
    width: 5vh;
    margin: 2.5vh;
}


nav > div:nth-child(2) {
    display: flex;
    gap: 1em;
    justify-content: center;
    align-items: center;
}


nav > div:nth-child(2) > button {
    height: 70%;
    border: 1px solid white;
    font-size: small;
    padding: 0.5em 1em;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
}

nav > div:nth-child(2) > button:hover {
    border: 1px solid blueviolet;
    background-color: #41403e;
}


nav > div:nth-child(2) > div {
    /* T and i */
    height: 6vh;
    width: 6vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: black;
    border-radius: 50%;
    border: 1px solid white;
    cursor: pointer;
}


header {
    height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


h1 {
    font-size: 7em;
    letter-spacing: 1rem;
}


header > p {
    width: 75vw;
}


main {
    width: 96%;
    padding: 20vh 2%;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 5vh 0vw;
    background-color: #EEEEFF;
}


#map-container {
    width: 65%;
    display: flex;
    flex-wrap: wrap;
}


.map {
    height: 150px;
    width: 150px;
    background-color: transparent;
    border-bottom: 2px solid black;
}


.map > img {
    height: 100px;
    padding: 50px;
}


#play-container {
    width: 20%;
    position: sticky;
    top: 12vh;
    padding: 3em;
    border: 1px solid black;
    background-color: #fff;
    color: black;
    border-radius: 5px;
    box-shadow: 0 8px 16px hsla(210,8%,62%,.4);
}


#play-container > div {
    margin: 2em 0;
}


.button-1 {
    align-self: center;
    margin-right: 1em;
    background-color: #fff;
    background-image: none;
    background-position: 0 90%;
    background-repeat: repeat no-repeat;
    background-size: 4px 3px;
    border-radius: 15px 225px 255px 15px 15px 255px 225px 15px;
    border-style: solid;
    border-width: 2px;
    box-shadow: rgba(0, 0, 0, .2) 15px 28px 25px -18px;
    box-sizing: border-box;
    color: #41403e;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    line-height: 23px;
    outline: none;
    padding: .75rem;
    text-decoration: none;
    transition: all 235ms ease-in-out;
    border-bottom-left-radius: 15px 255px;
    border-bottom-right-radius: 225px 15px;
    border-top-left-radius: 255px 15px;
    border-top-right-radius: 15px 225px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-1:hover {
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    box-shadow: rgba(0, 0, 0, .3) 2px 8px 8px -5px;
    transform: translate3d(0, 2px, 0);
  }
  
  .button-1:focus {
    box-shadow: rgba(0, 0, 0, .3) 2px 8px 4px -6px;
  }


footer {
    width: 95%;
    background-color: black;
    color: #fff;
    padding-left: 5%;
    text-align: center;
}


footer > div {
    width: 94%;
    padding: 15vh 3%;
    line-height: 24px;
    border-left: 2px solid white;
}





@media screen and (max-width: 1024px) {

    nav {
        position: static;
    }

    h1 {
        font-size: xx-large;
        letter-spacing: 0.75rem;
    }

    .map {
        height: 100px;
        width: 100px;
    }

    .map > img {
        height: 70px;
        padding: 15px;
    }

    #play-container {
        width: 25%;
        top: 2vh;
        font-size: small;
        padding: 2em;
    }

    #play-container > div {
        margin: 1em 0;
    }

    .button-1 {
        padding: .25rem;
    }
}
