@font-face {
  font-family: "Roboto Condensed";
  src: url("./fonts/roboto-condensed.woff");
}

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

body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.clock {
  font-size: 4rem;
  margin: auto;
  text-align: center;
  display: flex;
  font-weight: 700;
}
h1 {
  color: rgb(0, 63, 85);
  text-align: center;
}

[data-text] {
  font-size: 1.3rem;
  margin: 0 40px;
}

video {
  width: 100%;
}

h1 {
  position: relative;
  color: white;
}
.wrapper {
  position: relative;
  width: 100%;
}

.wrapper::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: radial-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 1)
  );
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
}

button {
  background: none;
  color: white;
  font-size: 1.2rem;
  outline: none;
  padding: 13px 18px;
  border: none;
}
button:last-child {
  padding: 13px 50px;
  border: 1px solid white;
}

button:nth-child(3) span {
  color: rgb(237, 0, 0);
}

.buttonsContainer {
  display: flex;
  justify-content: center;
}

.button {
  padding: 20px 30px;
  margin: 20px;
}
.button.frame {
  border: 1px solid white;
}

.button.red {
  background-color: red;
}

.hero {
  text-align: center;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 100px;
  justify-content: center;
  align-content: top;
  left: 0;
  right: 0;
}

.hero img {
  width: 100px;
  margin: 15px auto;
}

.eventTime {
  letter-spacing: 2px;
}

.fightersContainer {
  display: flex;
  justify-content: center;
}

.side {
  margin: 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.fighter {
  font-size: 3.8rem;
  font-weight: 800;
  margin: 0;
  padding: 0;
}

.fighter span {
  font-size: 3rem;
  font-weight: 700;
  text-decoration: underline;
}

.fighter:nth-of-type(3) {
  color: rgb(204, 204, 204);
  margin-top: -30px;
}
.apps {
  width: 450px;
  margin: auto;
}

@media screen and (max-width: 500px) {
  .fightersContainer {
    flex-direction: column;
  }
  .fighter {
    font-size: 2.2rem;
  }
  #noVisible {
    display: none;
  }
  .clock {
    font-size: 3rem;
    padding: 20px 5px;
  }
  [data-text] {
    margin: 0 15px;
  }
  .fighter:nth-of-type(3) {
    margin-top: -10px;
  }
  video {
    height: 80vh;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .wrapper {
    text-align: center;
    overflow: hidden;
    margin: auto;
    margin-left: auto;
    margin-right: auto;
  }
  button:last-child {
    padding: 10px 15px;
    font-size: 1.1rem;
  }
  .reverseContainer {
    display: flex;
    flex-direction: column-reverse;
  }
  .buttonsContainer {
    flex-direction: column;
    width: 50%;
    margin: 2px auto;
  }
  .button {
    margin: 5px;
  }
}
