@font-face {
    font-family: "Eurostile";
    src: url("/fonts/EurostileLTStd-Bold.otf") format("opentype");
}

@font-face {
    font-family: "Realtime";
    src: url("/fonts/Realtime-Rounded.otf") format("opentype");
}
:root {
	font-size: 13px;
	--color-text: white;
	--color-bg: #000;
	--color-link: rgba(255,255,255,0.5);
	--color-link-mobile: rgba(255,255,255,0.6);
	--color-bg-slide: #171719;
	--seek-before-width: 0%;
	--buffered-width: 0%;
	--height: 100vh;
}

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*,
*::after,
*::before {
	box-sizing: border-box;
}


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
	background-color:black;
    font-family:'Realtime', sans-serif;
}

h1, h2 {
    font-family:'Eurostile', sans-serif;
}

h1 {
    font-size: 11vw;
}

.container {
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    background-color: white;
    color: black;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* .bkg_img_container {
	position: absolute;
	top: 0;
	left:0;
	width:100%;
	height:100%;
	opacity: 1;
    transition: opacity 2000ms ease;
}

.bkg_img {
    background-image: url('./images/view_1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
	width:100%;
	height:100%;
	will-change: transform;
}

.bkg {
    background-color: rgba(0,0,0,0.4);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */

.main-content{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

p {
    font-size: 16px;
    position:relative;
    text-transform: uppercase;
}

p span.exp {
    font-size: 12px;
    position: absolute;
    top: -3px;
    text-transform: uppercase;
    padding-left: 5px;
}

p span:not(.exp) {
    margin-right: 5px;
}

.date-flex {
    display: flex;
    gap: 45px;
    margin-left:-5em;
}

@media (max-width: 991px) {
    h1 {
        font-size: 14vw;
    }
}