html, body {
    margin: 0;
    height: 100%;
    background-image: linear-gradient(to bottom, rgb(10, 10, 10), rgb(32, 32, 32));
    overflow: hidden;
}

footer {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    position: sticky;
    bottom: 5px;
    color: lightgrey;
    opacity: 70%;
}

h1 {
    font-family: DMC5font;
    font-size: 5em;
    color: white;
    white-space: nowrap;
}

span {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

a {
    color: white;
    text-decoration: none;
}

@font-face {
    font-family: DMC5font;
    src: url(media/DMC5font.otf) format("opentype");
}

#logo {
    display: flex;
    position: absolute;
    width: 100%;
    height: 25%;
    top: 5%;
    transform: translate(0%, -10%);
    justify-content: center;
}

.container {
	scrollbar-width: none;
    flex: 1 1 0;
    margin: auto;
    margin-top: 30vh;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    gap: 15px;
    max-height: 67vh;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;    
}

.container::-webkit-scrollbar {
    display: none;

}

.item {
    scroll-snap-align: start;
    scroll-padding: 10px;
    position: relative;
    z-index: 1;
    opacity: 50%;
    transition: opacity 500ms;

}


.container img {
    height: 40vh;    
    aspect-ratio: 14 / 8;
    border-radius: 2em;
    margin-bottom: 10px;
}


#padding img {
    height: 22vh;
    visibility: hidden;
}


.item.selected {
    opacity: 100%;    
}


.list {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 18px;
    margin-left: 7px;
    margin-right: 7px;
}

#pending .list {
    visibility: hidden;
}

.option {
    flex: 1 1 0;
    background-image: linear-gradient(to bottom, rgb(87, 87, 87), rgb(43, 43, 43));
    border-radius: 1em;
    height: 0px;
    transition: height 500ms;
    position: relative;
    display: flex;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: lightgray;
    padding: 1em 2em;
    justify-content: center;
    align-items: center;
}

.item.selected .option {
    height: 7em;
}

.option::after {
    content: '';
    border-radius: 1em;
    position: absolute;
    height: 110%;
    width: 110%;
    background-image: linear-gradient(to bottom, rgb(255, 132, 17), rgb(219, 106, 0));
    z-index: -1;
}

.option:hover {
    z-index: 0;
    box-shadow: 0 0 100px rgba(255, 132, 17, 0.404);
}

.option img {
    color: white;
    max-height: 80%;
    max-width: 100%;
}

@media screen and (max-width: 550px) {
    .container {
        align-items: baseline;
    }
    .container img {
        max-width: 100vw;
        height: auto;
    }
    .list {
        gap: 9px;
        flex-wrap: wrap;
    }
    .option {
        flex-basis: 45%;
        box-sizing: border-box;
    }
}
