@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #c4d4e3;
}

.logo {
    width: 150px;
}

.title {
    font-size: 50px;
}

p {
    font-size: 18px;
}

.video-container {
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-container video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (min-width: 2000px) {
    .container {
        transform: scale(1.4);
    }
}

@media (min-width: 1400px) {
    .container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo {
        width: 200px;
    }

    .title {
        font-size: 62pt;
    }

    .pharagraph {
        font-size: 25pt;
    }
}

@media (max-width: 575.98px) { 
    .pharagraph {
        font-size: 25px;
    }
}

@media (max-width: 375px) { 
    .title {
        font-size: 35px;
    }

    .pharagraph {
        font-size: 22px;
    }
}