html {
    background-color: #262626;
    font-family: 'Arial', sans-serif;
}

body {
    /* margin: 0; */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-container {
  display: flex;
  justify-content: center;
}

#feet {
    max-width: 100%;
    height:auto;
    max-height: 600px;
    display: flex;
    justify-content: center;
    margin-top: -150px;
    position: absolute;
}

#soggy {
    z-index:1;
}

.mobile-title-stack {
    display: none;
    z-index: 1;
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
}


/* Buttons */
.button-stack {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 300px;
    margin-bottom: 20px;
    flex-direction: column;
    clear:both;
}

.svg-butt {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
    max-height: 200px;
}
.svg-butt:hover {
    transform: scale(1.05);
}


@media screen and (max-width: 800px) {
    #soggy {
        display: none;
    }
    .mobile-title-stack {
        display: flex;
        flex-direction: column;
        text-align: center;

    }
    #mob-soggy {
        width: 100%;
        height:auto;
    }
    #mob-toes {
        width: 75%;
        margin-top: -40px;
        margin-left: auto;
        margin-right: auto;
    }
    #feet {
        max-width: 400px;
        margin-top: 0px;
    }
    .button-stack {
        margin-top: 125px;
        gap: 10px;
    }
}

@media screen and (max-width: 500px) {
    .svg-butt {
        width: 60%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
}