html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100%;
    background: linear-gradient(to top, #EBBCB9, #F39F5A, #AE445A, #662549, #451952, #1D1A39);
    background-repeat: no-repeat;
    position: relative;
    overflow: auto;
    color: white;
}

.sand {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/sandpaper.png');
    opacity: 0.2;
    pointer-events: none;
}


header {
    /* text-align: center; */
    padding-top: 2rem;
}

header h2 {
    text-transform: uppercase;
    font-weight: 400;
    font-style: normal;
}

header p {
    text-align: center;
    margin-top: 1rem;
}

.identification {
    display: flex;
    align-items: center;
    justify-content: center;
}

.identification img {
    width: 50px;
    height: auto;
    image-rendering: crisp-edges;
}

.about {
    margin-top: 2rem;
    text-align: center;
}

.aboutMe {
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    width: 400px;
    text-align: center;
    margin: auto;
    margin-top: 2rem;
}

.about p {
    margin-top: 1rem;
}

.videos {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.videos iframe {
    width: 600px;
}

footer {
    margin-top: 4rem;
    /* margin-bottom: 4rem; */
    background: black;
    /* color: black;    */
    display: flex;
    align-items: start;
    gap: 4rem;
    justify-content: start;
    /* height: 30vh; */
}

/* .schedule {
    text-align: start;
    width: 600px;
} */

/* .schedule h3 {
 
    text-transform: uppercase;
} */

/* .schedule ol {
    margin-top: 1rem;
    list-style: none;
} */

/* .schedule li {
    margin-top: 1rem;
    list-style: none;
    background: white;
    color: black;
    width: fit-content;
    padding: 6px;
    border-radius: 12px;
    font-weight: bold;
} */

.links {
    width: 600px;
    text-align: start;
    padding: 4rem;
}

.links h3 {
    text-transform: uppercase;
}

.links p {
    margin-top: 1rem;
}

.links ol {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.links img {
    filter: invert(100%) brightness(100%);
}

.links a {
    cursor: pointer;
}

body, .videos, footer, .schedule, .links {
    max-width: 100vw;
}


@media (max-width: 768px) {

    body{
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
    }

    .videos {
        margin-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4rem;
    }

    .videos iframe {
        width: 350px;
        height: 250px;
    }

    footer {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 40vh;
    }

    .schedule {
        text-align: center;
        margin: auto;
    }

    .schedule ol {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .links{
        text-align: center;
    }

    .links p {
        margin: auto;
        text-align: center;
        width: 250px;
    }

    .links ol {
        justify-content: center;
    }

    .aboutMe {
        font-size: 22px;
        width: 300px;
        text-align: center;
        margin: auto;
        margin-top: 2rem;
    }

}