* {
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

#wrapper {
    width: 100%;
    margin: auto;
}

.clearfix::after {
    clear: both;
    display: block;
    content: "";
}

#Background {
    min-height: 100vh;
    width: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExeHp4bzN3bmRtbWo3OWpvd2ZwMXRkY3JyOWlwc3hwZHh4c3JreTEyZCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/xT4uQF7h39mlsF5czK/giphy.gif");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Nav {
    display: flex;
    position: absolute;

    top: 3%;
    left: 1%;
    align-items: center;
    justify-content: center;
}

#Nav p {
    color: white;
    position: relative;
    left: 10%;
    font-size: 30px;
    font-style: italic;
}

#Nav img {
    width: 50px;
}

#Center {
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 40%;
    left: 50%;
    color: white;
    transform: translateX(-50%);
    text-align: center;

    max-width: 750px;
    width: 100%;
}

#Center h1 {
    font-size: 80px;
}

#Center p {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-top: 25px;
    font-size: 25px;
}

#buttons {
    display: flex;
    gap: 100px;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
}

.button {
    margin-top: 50px;
    padding: 15px 30px;
    color: whitesmoke;
    background-color: rgba(22, 51, 97);
    border: none;
    font-size: 18px;
    min-width: 200px;
    border-radius: 16px;
}

.button:hover {
    cursor: pointer;
    transform: translateY(-8px);
}

@media (max-width: 768px) {

    #Center {
        top: 15%;
        padding: 20px;
    }

    #buttons {
        flex-direction: column;
        top: 115%;
        width: 100%;
    }

    .button {
        width: 90%;
        max-width: 300px;
        font-size: 16px;
        margin-top: 0px;
    }

    #Nav p {
        font-size: 22px;
    }

    #Nav img {
        width: 40px;
    }

    html,
    body {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }

    #wrapper {
        position: relative;
        z-index: 2;
        min-height: 100svh;
    }

    #content {
        min-height: 120svh;
    }

    #Background {
        position: fixed;
        inset: 0;
        height: 100svh;
        z-index: 0;

        background:
            linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
            url("https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExeHp4bzN3bmRtbWo3OWpvd2ZwMXRkY3JyOWlwc3hwZHh4c3JreTEyZCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/xT4uQF7h39mlsF5czK/giphy.gif");

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}