@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  font-family: "Oswald", sans-serif;
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --swiper-theme-color: #ffeb24;
}

html,
body {
  position: relative;
  height: 100%;
  background-color: yellow;
}

.static {
  width: 100vw !important;
  height: 100vh !important;
  background-color: black;
  position: fixed;
}

.full__screen-btn {
  position: fixed;
  z-index: 3;
  margin: 16px;
  right: 0;
  bottom: 0;
}

video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.swiper {
  width: 100%;
  height: 100%;
  position: fixed;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper, .swiper-wrapper, .swiper-slide {
  background-color: transparent;
}

.slide {
  width: 100vw;
  height: 100vh;
  color: #fff !important;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.slide-title {
  width: 100vw;
  height: 100vh;
  color: #fff !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.m-100 {
  margin-bottom: 100px;
}

h1 {
  font-size: 9rem;
  text-shadow: 0px 0px 15px black;
}

h2 {
  font-size: 5rem;
  text-shadow: 0px 0px 15px black;
}

h3 {
  font-size: 3rem;
}

p {
  font-size: 2rem;
  padding: 2rem;
}

mark {
  padding: 3px 2rem;
  font-size: 2rem;
}

.title-white {
  color: white;
}
