* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    height: 100%;
}

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

.front {
    text-align: center;
    height: 100vh;
}

.front h1 {
    color: #2067d8;
    font-size: xxx-large;
    margin-top: 100px;
    animation: fadeIn 4s;
}

.front h2 {
    font-size: x-large;
    color: white;
    margin-top: 300px;
    animation: fadeIn 6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;;
    }
    to {
        opacity: 1;
    }
}
