/* BEGIN CSS RESET */
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;
}

body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* END CSS RESET */

body {
  background: #000;
  color: #fff;
  overflow: hidden;
  font-family: 'UnifrakturCook', serif;
  font-weight: 700;
  font-style: normal;
  min-width: 320px;
}

.helvetica {
  font-family: Helvetica, 'Helvetica Neue', system-ui, arial, sans-serif;
}

#video-1 {
  background: #000;
  cursor: pointer;
  z-index: 2;
}

#video-2 {
  z-index: 1;
}

.video-container {
  opacity: 1;
  transition: opacity 300ms ease-in-out;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
}

.hidden {
  opacity: 0;
}

.video-player {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.logo-div {
  pointer-events: none;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 40vw;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 40px;
  filter: brightness(0) invert(1);
  transition: opacity 300ms ease-in-out;
  text-align: center;
}

.logo-div img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.text {
  font-size: 25px;
  color: #fff;
  display: block;
}

.text.large {
  font-size: 40px;
}

.text.medium {
  font-size: 30px;
}

.logo-div > div {
  margin: 0 auto;
}

.seven-sisters-oe {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rio-logo {
  width: 25%;
}

.seven-sisters-logo {
  width: 100%;
}

.boogie-logo {
  width: 52%;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media screen and (max-width: 600px) {
  .logo-div {
    gap: 30px;
    width: 60vw;
  }
}
