* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
    font-family: Helvetica, Arial;
    text-shadow: -1px -1px 1px black, 1px 1px 1px black;
    overflow: hidden;
}

body {
    background-color: black;
}

main {
    width: 100vw;
    height: 100vh;
    background-color: black;
}

main section.content {
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    color: white;
    background-color: transparent;
    padding: 3%;
}

main section.content div.top h2 {
    font-size: 48px;
}

main section.content div.top p {
    font-size: 32px;
    margin-top: 15px;
    margin-bottom: 15px;
}

main section.content div.mid {
    margin: 10px;
}

main section.content div.mid img {
    height: 60vh;
    width: auto;
}

main section.content div.bottom button {
    border-radius: 15px;
    background: transparent;
    border: 2px solid #eee;
    padding: 10px 30px;
    cursor: pointer;
    transition: opacity .3s, background-color .3s;
    box-shadow: 1px 1px 1px black;
    text-shadow: 1px 1px 0px black;
    color: white;
}

main section.content div.bottom button:hover {
    cursor: pointer;
    background-color: #bbb;
    opacity: .8;
}


/* ############ MEDIA QUERIES ####################*/

@media screen and (max-width: 768px) {
    main {
        width: 100vw;
        height: 100vh;
    }
    
    main section.content {
        display: flex;
        width: 100vw;
        height: 100vh;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        color: white;
        background-color: transparent;
        padding: 15px;
    }
    main section.content div.top h2 {
        font-size: 42px;
    }
    
    main section.content div.top p {
        font-size: 30px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    main section.content div.mid img {
        height: 60vh;
        width: auto;
    }
}


@media screen and (max-width: 480px) {
    
    main {
        width: 100vw;
        height: 100vh;
    }
    
    main section.content {
        display: flex;
        width: 100vw;
        height: 100vh;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        color: white;
        background-color: transparent;
        padding: 15px;
    }

    main section.content div.top h2 {
        font-size: 30px;
    }
    
    main section.content div.top p {
        font-size: 18px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    main section.content div.mid img {
        height: 42vh;
        width: auto;
    }
}


@media screen and (max-width: 320px) {
    
    main {
        width: 100vw;
        height: 100vh;
    }
    
    main section.content {
        display: flex;
        width: 100vw;
        height: 100vh;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        color: white;
        background-color: transparent;
        padding: 15px;
    }

    main section.content div.top h2 {
        font-size: 30px;
    }
    
    main section.content div.top p {
        font-size: 18px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    main section.content div.mid img {
        height: 40vh;
        width: auto;
    }
}