@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

html, body {
    height: 100%;
    width: 100%;
    font-family: Montserrat, sans-serif;
    overflow: hidden;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    padding: 20px;
    max-width: 90%;
}

.logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 40px;
    font-size: clamp(2rem, 5vw, 2rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

    h1 span {
        font-weight: 200;
    }

.buttons {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.btn {
    background-color: #74ACDD;
    color: #ffffff;
    text-decoration: none;
    padding: 20px;
    font-size: 1rem;
    border-radius: 0;
    transition: background-color 0.3s;
    width: 150px;
}

.btn:hover {
    background-color: #5b97c2;
}

.small-text {
    font-size: 0.8rem;
}
