@font-face {
  font-family: "Myriad Pro Cond";
  src: url("font/MyriadPro-Cond.woff2") format("woff2"), url("font/MyriadPro-Cond.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
  overflow-x: initial;
  overflow-x: hidden;
}

body {
  position: relative;
  overflow-x: hidden;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.wrapper {
  position: relative;
  height: 100vh;
}

.myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  height: 100vh;
  object-fit: cover;
}

.content {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 99;
  color: white;
  font-family: Myriad Pro Cond;
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding: 30px 10px;
  background: rgba(22, 19, 21, 0.6);
}
@media only screen and (max-width: 960px) {
  .content {
    font-size: 19px;
    gap: 12px;
  }
}
.content div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}