body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
}

.background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background video {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    z-index: -1;
}

.logo {
    position: absolute;
    top: 83px;
    display: flex;
    justify-content: center;
}

.logo img {
    user-select: none;
    width: 100%;
}

@media (min-width: 950px) {
    .logo img {
        width: 75%;
    }
}

@media (min-width: 1400px) {
    .logo img {
        width: 50%;
    }
}

@media (min-width: 3000px) {
    .logo img {
        width: 25%;
    }
}
