* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
    font-family: "Helvetica", sans-serif;
}

body {
    position: relative;
    width: 100%;
    height: 100vh;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 40px;
}

.contact-info p {
    margin: 0;
    font-size: 25px;
}

.social-links {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
}

.social-links .email {
    color: #000000;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
}

.social-links .email:hover {
    text-decoration: underline;
}

.social-links img {
    height: 20px;
}

.logo-container {
    position: fixed;
    bottom: -6%;
    right: -2%;
}

.logo-container img {
    width: 87%;
    float: right;
}

.link-pdf {
    position: absolute;
    bottom: 5px;
    left: 3%;
}

.link-pdf a {
    color: #000000;
    text-decoration: none;
    z-index: 5;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
}

.link-pdf a:hover {
    text-decoration: underline;
}

@media (max-width: 1440px) {

    .logo-container {
        bottom: -6%;
        right: -2%;
    }

    .logo-container img {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .social {
        align-items: center;
        flex-direction: column-reverse;
        text-align: center;
    }

    .social-links .email {
        font-size: 14px;
    }

    .contact-info {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .contact-info p {
        width: 100%;
        height: 300px;
        text-align: center;
    }

    .logo-container {
        bottom: -3%;
        right: -2%;
    }

    .logo-container img {
        width: 95%;
    }

    .link-pdf {
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 520px) {

    .logo-container {
        bottom: 0;
        right: 0;
    }

    .logo-container img {
        width: 100%;
    }
}