@font-face {
  font-family: "Crystal Cathedral";
  src: url("assets/fonts/Crystal\ Cathedral.otf") format("truetype");

  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: consola;
  src: url("assets/fonts/consola.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: consola;
}
.title {
  visibility: hidden;
  font-size: 1px;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding-top: 10px;
}
.top-text {
  font-family: "Crystal Cathedral";
  font-size: 2.5rem;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 20px;
}
#safiraVideo {
  object-fit: contain;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.bottom-text {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 1rem;
  max-width: 50%;
  margin-bottom: 1rem;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

a.button {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-family: consola;
  font-size: 1.3rem;
  padding: 5px 20px;
  margin: 0 10px;
  border: 2px solid #000;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 300px;

  background: rgb(0, 0, 0);
  background: linear-gradient(
    103deg,
    rgba(0, 0, 0, 0.3) 9%,
    rgba(255, 85, 85, 0.9) 29%,
    rgba(255, 255, 255, 1) 100%
  );
}
.copyright p {
  text-align: center;
  margin-bottom: 20px;
  padding: 0 10px;
}

.button img {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 10px;
}
.button:not(:last-child) span {
  margin-left: 20px;
}
.button span {
  flex-grow: 1;
  /* text-align: center; */
}

.button:hover {
  background-color: #000;
  color: #fff;
}

@media only screen and (max-width: 959px) {
  .top-text {
    font-size: 2rem;
    max-width: 95%;
  }
  .bottom-text {
    font-size: 1.2rem;
    max-width: 90%;
  }
  .button {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 700px) {
  .logo-container img {
    width: 150px;
  }
}
