@import url(https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&display=swap);
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all    : unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
    -moz-text-size-adjust   : none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust        : none;
        text-size-adjust        : none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size : 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    -moz-appearance        : revert;
         appearance        : revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all       : revert;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
    color: unset;
}
::-moz-placeholder {
    color: unset;
}
:-ms-input-placeholder {
    color: unset;
}
::-ms-input-placeholder {
    color: unset;
}
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify   : read-write;
    -webkit-user-modify: read-write;
    overflow-wrap      : break-word;
    -webkit-line-break : after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all       : revert;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
    display: none;
}
body {
    min-height     : 100vh;
    color          : #fff;
    background     : #01002B bottom right no-repeat url(beam.7f0417286a9cdc2d3ead.png);
    background-size: auto auto;
    margin         : 0 auto;
    font-family    : "Fira Sans", sans-serif;
}

#logo {
    position: absolute;
    top     : 60px;
    left    : 60px;
    height  : 56px;
}

#videocontainer,
#messagecontainer {
    position      : relative;
    margin        : 0 auto;
    width         : 66vw;
    display       : -webkit-box;
    display       : -ms-flexbox;
    display       : flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

#messagecontainer {
    height         : 100vh;
    -webkit-box-align    : center;
        -ms-flex-align    : center;
            align-items    : center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

#metadata {
    padding   : 57px 0 20px;
    text-align: left;
}

h1 {
    font-weight: 700;
    font-size  : 16px;
    line-height: 21px;
    color      : #E8E8EA;
    margin     : 0 0 5px 0;
}

#messagecontainer h1 {
    text-align: center;
}

h2,
h3 {
    font-weight: 400;
    font-size  : 14px;
    line-height: 18px;
    color      : #B6B7BE;
    margin     : 0 0 2px 0;
}

#vid {
    width : 66vw;
    height: 37.125vw;
}

#contact {
    padding    : 35px 0 30px;
    text-align : center;
    font-weight: 400;
    font-size  : 14px;
    line-height: 18px;
}

#messagecontainer #contact {
    padding: 22px 0 0;
}

#contact a {
    text-decoration: underline;
}

#contact a:hover {
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    body {
        background-size: 393px auto;
    }

    #logo {
        top   : 40px;
        left  : 40px;
        height: 32px;
    }

    #videocontainer {
        width: 100%;
    }

    #messagecontainer {
        width  : 100%;
        padding: 0 40px;
    }

    #metadata {
        padding: 100px 40px 20px;
    }

    #vid {
        width    : 100vw;
        max-width: 100%;
    }

    #contact {
        padding: 40px 40px;
    }
}
