* {
    margin: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background: url(media/background.webp);
    background-position: center -450px;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #020201;
}

a {
    text-decoration: none;
}

/* Home Page */
#home-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75vh;
    width: 100%;
}

#home-page img {
    pointer-events: none;
    margin-top: 50px;
    width: 400px;
    filter: drop-shadow(0 0 1rem rgb(0, 0, 0));
    opacity: 95%;
}



/* Options */
#options {
    background-color: #203d2fc4;
    bottom: 0;
    width: 100%;
    min-height: 25vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

#options .menu-optie {
    overflow: hidden;
    transition: 0.25s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 525px;
    height: 175px;
    background-color: #020201;
    border-radius: 10px;
    cursor: pointer;
}



#options .menu-optie img {
    transition: 0.25s;
    width: 550px;
    object-fit: cover;
    filter: brightness(30%) grayscale(45%);
}

#options .menu-optie img:hover {
    filter: brightness(55%) grayscale(25%);
}

#options .menu-optie h1 {
    color: #b99844;
    font-weight: 800;
    font-size: 36px;
    font-family: 'Noto Sans', sans-serif;
}

#options span {
    scale: 1.95;
    margin-right: 22px;
    color: #b99844;
}

#options .menu-optie .info-container {
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}



/* Phone display */
@media (max-width: 1400px) {
    #options {
        padding-top: 25px;
        padding-bottom: 25px;
        flex-direction: column;
    }

    #options .menu-optie {
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    #options .menu-optie {
        width: 445px;
    }
}

@media (max-width: 450px) {
    #options .menu-optie {
        width: 325px;
    }
}