@import url('https://fonts.googleapis.com/css2?family=Smooch+Sans:wght@100..900&display=swap');

body{
    margin: 0;
    max-height: 100vh;
    overflow-x: hidden;
}

.title {
 color: white;
    font-family: "Smooch Sans", serif;
    font-weight: 800;
    font-size: 5em;
    text-align: center;
    margin-left: 20px;
    z-index: 2;
}

.title-wrapper {
    display: flex;
    justify-content: flex-start;
}

.yt-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    filter: blur(4px);
}

.youtube{
    z-index: 2;
    width: 80%;
    aspect-ratio: 16/9;
    max-width: 1000px;
}

.footer-wrapper{
    font-weight: 800;
    font-size: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin-right: 30px;
    text-align: center;
    z-index: 1;
    gap: 16px;
}
.image{
    max-width: 100vw;
}

.social-icon{
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-color: #ffffff;
    border-radius: 50%;
    border: 2px solid #dadada;
}

.wrapper{
    background-color: #000000;
    color: white;
    max-width: 100vw;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    background-image: url("/img/pepe.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}