/* global styling */
html {
    background-color: #202020;
    color: #fff;
    font-family: sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    justify-content: center;
    align-items: center;
}

/* main section styling */
main {
    margin: 50px 0;
    display: flex;
    gap: 25px;
    flex-direction: column;
    min-height: calc(100vh - 120px);
    justify-content: flex-start;
    align-items: center;
}

/* typography */
h1 {
    text-transform: uppercase;
    font-style: italic;
    font-size: 50px;
    margin: 0;
}
p {
    font-size: 20px;
}
a {
    color: rgb(255, 0, 0);
}

/* age verification buttons */
.age-verification {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* video player and link */
.video-player {
    width: 90%;
    max-width: 1200px;
    margin: 0 20px;
}
.other-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.requirement {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    align-items: center;
    width: 70%;
}
.videos-list {
    margin: 25px 0;
}
.videos-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;}

/* images */
.images {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    align-items: center;
    width: 80%;
}
.images img {
    width: 80%;
    max-width: 1200px;
}