#root {
    font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;

    color-scheme: light dark;
    color: rgba(255, 255, 255, 0.87);
    background-color: #242424;

    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    max-width: 1280px;
    text-align: center;
}

body {
    font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
    background-color: #242424;
}

.videobg {
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: none;
    position: fixed;
    object-fit: cover;
    opacity: 0.85;
}

.overlayContent {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.titleText {
    font-size: 1.4rem;
    color: white;
}

.corner_logo {
    position: absolute;
    top: 20px;
    left: 16px;
    width: 18vw;
    min-width: 200px;
    cursor: pointer;
}

.cornerText {
    position: absolute;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 1rem;
    color: white;
}

.logo {
    width: 70vw;
    min-width: 400px;
}

.socialIconRow {
    margin-top: 8px;
    display: flex;
}

.socialIcon {
    width: 30px;
    height: 30px;
    padding: 8px;
    cursor: pointer;
}

.socialIcon:hover {
    transform: scale(1.2);
}

.corner_logo:hover {
    transform: scale(1.07);
}

.cornerText:hover {
    opacity: 0.7;
}