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

body {
  background-color: #000;
}

.header {
  background-color: #9d1008;
  height: 100px;
  width: 100%;
  padding: 10px;

  img {
    max-width: 80px;
    width: 100%;
  }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  height: calc(100vh - 100px);
  padding: 20px 40px;
}

.text-wrapper {
  max-width: 50%;
  text-align: center;
  font-size: 40px;
  color: #fff;
  font-weight: 700;
}

video {
  max-width: 800px;
  width: 100%;
}

.link {
  display: block;
  background-color: #9d1008;
  padding: 20px;
  font-size: 24px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  max-width: 40%;
  width: 100%;
  font-weight: 700;
  transform: scale(1);
  transition: transform .4s ease, background-color .4s ease;
}

.link:hover {
  transform: scale(1.02);
  background-color: #7b0600;
}

@media (max-width: 600px) {
  main {
    gap: 40px;
  }

  .text-wrapper {
    max-width: 100%;
    font-size: 24px;
  }

  video {
    max-width: 800px;
    width: 100%;
  }

  .link {
    max-width: 250px;
  }
}
