@font-face {
    font-family: "futra";
    src: url("../fonts/font.ttf");
}

*::after,
*::before {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    overflow: hidden;
    font-family: "futra";
}

body,
p {
    margin: 0;
    padding: 0;
}

img {
    -webkit-user-drag: none;
}

.container {
    display: unset;
    margin: 50px;
}

.background {
    width: 100%;
    display: grid;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -99;
    position: fixed;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.content {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo {
    width: 110px;
    height: 110px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.player {
    width: 99.9%;
    overflow: hidden;
    position: relative;
    background-color: black;
}

[data-media-provider] video {
    display: block !important;

}

media-player[data-view-type='video'] {
    --media-brand: #f5f5f5;
    --media-focus-ring-color: #4e9cf6;
    --media-focus-ring: 0 0 0 3px var(--media-focus-ring-color);
    --media-border-radius: 6px;

    --media-tooltip-y-offset: 30px;
    --media-menu-y-offset: 30px;

    contain: layout;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #212121;
    border-radius: var(--media-border-radius);
}

media-player video,
media-poster {
    border-radius: var(--media-border-radius);
}

media-gesture {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

media-gesture[action='seek:-10'],
media-gesture[action='seek:10'] {
    width: 20%;
    z-index: 1;
}

media-gesture[action='seek:10'] {
    left: unset;
    right: 0;
}

/* Remove toggle to pause on touch. */
@media (pointer: coarse) {
    media-gesture[action='toggle:paused'] {
        display: none;
    }
}

/* Remove toggle controls on mouse. */
@media not (pointer: coarse) {
    media-gesture[action='toggle:controls'] {
        display: none;
    }
}


media-controls-group {
    display: flex;
    align-items: center;
    width: 100%;
}

media-controls-group {
    padding-inline: 8px;
}

media-controls-group:last-child {
    margin-top: -4px;
    padding-bottom: 8px;
}

media-time-slider {
    --media-slider-height: 40px;
}

media-time-slider media-slider-value {
    background-color: unset;
}

media-volume-slider {
    --media-slider-height: 40px;
    --media-slider-preview-offset: 32px;
    margin: 0;
    max-width: 0;
    transition: all 0.15s ease;
    transform: translateX(-2px);
}

:where(*[data-hocus], *:focus-within)+media-volume-slider,
media-volume-slider[data-active] {
    margin-left: 4px;
    max-width: 80px;
}

.vds-time-group {
    margin-left: 8px;
}


.social-container {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social {
    width: 28px;
    height: 28px;
    padding: 10px;
    transition: 0.4s ease background-color;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    background-color: white;
}

.social:hover {
    box-shadow: 0px 0px 0px 1px white;
    background-color: rgb(4 16 98);
}

.social:hover svg {
    fill: white;
}

.social svg {
    width: 100%;
    height: 100%;
    transition: 0.5s ease fill;
    fill: rgb(4 16 98);
}

.copyright {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.copyright p {
    font-size: 20px;
    color: white;
    text-transform: uppercase;
}

.copyright span {
    font-size: 20px;
    color: white;
    text-transform: capitalize;
}


@media only screen and (min-height: 400px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .max-player {
        width: 50vw;
    }
}

@media only screen and (min-height: 500px) {
    .max-player {
        width: 85vw;
    }
}

@media only screen and (min-width: 600px) {
    .max-player {
        width: 60vw;
    }
}


@media only screen and (min-width: 900px) {
    .max-player {
        width: 43vw;
    }
}