@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    box-sizing: border-box;
}

body {
    margin: 0;
}

.main-container {
    position: relative;
    background-image: url(../assets/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
}

.video-section {
    position: absolute;
    top: -10%;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    height: 200px;
    width: 162px;
}

.video-container .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logos-container {
    position: relative;
    top: -100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 40;
}

.frame {
    position: relative;
    top: -213%;
    left: -11%;
    width: 122%;
    height: 122%;
    object-fit: cover;
    background-image: url('./assets/frame.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.twitter-logo {
    position: absolute;
    top: 72%;
    left: 7%;
    width: 25%;
    height: 22%;
    object-fit: cover;
    cursor: pointer;
}

.insta-logo {
    position: absolute;
    top: 72%;
    left: 42%;
    width: 25%;
    height: 22%;
    object-fit: cover;
    cursor: pointer;
}

.tiktok-logo {
    position: absolute;
    top: 71%;
    left: 72%;
    width: 22%;
    height: 22%;
    object-fit: cover;
    cursor: pointer;
}

.logo a {
    display: block;
    height: 100%;
}

.btn {
    background-color: #B2832B;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
    font-size: 0.8rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: absolute;
    top: 115%;
    left: 15%;
}

.btn:hover {
    background-color: #b2832bef;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

@media (min-width:600px) {
    .video-container {
        height: 250px;
        width: 212px;
    }

    .btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        top: 115%;
        left: 20%;
    }
}

@media (min-height:750px) {
    .video-container {
        height: 250px;
        width: 212px;
    }

    .btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        top: 115%;
        left: 20%;
    }
}

@media (min-height:1000px) {
    .video-container {
        height: 350px;
        width: 294px;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 1.1rem;
        top: 115%;
        left: 24%;
    }
}
