/* Get Inter front from GFonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap');

html,
body {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    overflow: hidden;
    background-color: #333;
    color: #eee;
    height: 0%;
    /* I hate this */

    /* disable text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#videoContainer {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

/* center text */
#titleText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
}

/* Throw attrib text in the bottom left */
.attribText {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.5rem;
}

.link {
    text-decoration: none;
    color: #4383bb;
}

#mobileClickMe {
    position: absolute;
    height: 98%;
    width: 98%;
    filter: brightness(0%);
}