body {
  font-family: "Onest", sans-serif;
}

.screen {
  height: 100vh;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.screen__video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;

  position: relative;
  z-index: 20;

  width: 100%;
  max-width: 1353px; /* fix */

  text-align: center;

  color: #fff;
}

.screen__logo {
  margin-bottom: 48px;
}

.screen__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.screen__title {
  margin-bottom: 66px;
}
.screen__title img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screen__address {
  font-size: 20px;
  font-weight: 600;
}

.screen__address strong {
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  color: #ca3a21;
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .screen__logo {
    max-width: 100px;
  }
  .screen__logo {
    margin-bottom: 24px;
  }
  .screen__title {
    margin-bottom: 24px;
  }

  .screen__address {
    font-size: 16px;
  }
}
