@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

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

body {
    background-color: #EFEFEF;
}

a {
    text-decoration: none;
}

.video-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

video {
    height: 100vh;
}

.btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 38px;
    padding: 22px 30px;
    background-color: #1B1B1B;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    animation: upDown 1.2s infinite ease-in-out;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn svg path {
    stroke: #EFEFEF;
}

@keyframes upDown {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -9px);
    }
}

@media (max-width: 999px) {
    video {
        height: 100vh;
        width: 100vw;
        object-fit: cover;
    }
}