body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5); 
}

.logo {
    width: 250px;
    margin-bottom: 15px;
}

.text1 {
    font-size: 16px;
    margin-bottom: 22px;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
}

.text2 {
    font-size: 20px;
    margin-bottom: 5px;
    font-family: "Montserrat", sans-serif;
}

.text3 {
    font-size: 16px;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
}

.text4 {
    font-size: 17px;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.social-links a {
    margin: 0 15px;
    text-decoration: underline;
    color: white;
}

.social-links img {
    width: 28px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.1);
}
