:root {
    --black-color: #000000;
    --white-color: #ffffff;
    --grey-color: #f5f5f5;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;

    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: inherit;
}

html {
    position: relative;
    scroll-behavior: smooth;
}

body {
    position: relative;
    height: 100vh;
    width: 100%;
    
    background-image: var(--cover);
    background-size: cover;
    background-position: center center;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px)
}

/* --- SECTION CONTENT --- */

.content {
    position: relative;
    height: 100%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    overflow: hidden;
    padding: 25px;
}

.content h1 {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;

    color: var(--white-color);
}

.content .cover {
    height: 260px;
    width: 260px;

    background: url("https://www.alexjuan.com/img/single/pascommetoi.jpg");
    background-size: cover;
    background-position: center center;
}

.content .youtube {
    height: 180px;
}

.content .youtube iframe {
    height: 100%;
    width: 100%;
}

.social_container {
    margin: 50px 0;
    padding: 15px;
    width: 280px;

    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social_container .social_icon {
    height: 50px;
    width: 50px;
    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.social_container .social_icon:hover {
    background-color: var(--grey-color);
}

.social_container .social_icon img {
    margin-top: 3px;
    height: auto;
    width: 30px;

    filter: brightness(0);
}

/* --- SECTION FOOTER --- */

footer {
    position: absolute;
    bottom: 0;

    height: 100px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

footer p {
    color: var(--white-color);
}

footer a {
    color: var(--white-color);
    margin-left: 10px;
    border-left: 1px solid;
    padding-left: 10px;
}