* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: rgb(75, 71, 71);
  font-family: "Poppins", sans-serif;
}
header {
  margin: 0px;
}
.banner {
  width: 100%;
}
.nav-links {
  display: flex;
  justify-content: space-around;
  width: 100%;
  background-image: linear-gradient(to bottom right, red, black);
  height: 50px;
  align-items: center;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    height: 200px;
    margin-bottom: 30px;
  }
}
.box {
  display: flex;
  justify-content: space-around;
  height: 200px;
}
.text2 {
  text-align: center;
  align-self: center;
  color: white;
  font-size: 18px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .box {
    display: flex;
    flex-direction: column;
  }
  .text2 {
    font-size: 14px;
    width: 80%;
  }
}
.recent-event {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recent-events-image {
  margin-bottom: 20px;
}
.stats {
  margin-top: 30px;
  height: 15vh;
  background-image: linear-gradient(to right, red, black);
  display: flex;
  justify-content: space-around;
  margin-bottom: 50px;
}
.subs {
  list-style: none;
  color: white;
  margin-top: 10px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
.views {
  list-style: none;
  color: white;
  margin-top: 10px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .subs {
    font-size: 20px;
  }
  .views {
    font-size: 20px;
  }
  .recent-events-image {
    width: 100%;
  }
  iframe {
    width: 100%;
  }
}
footer {
  background-color: gray;
  display: flex;
  justify-content: space-around;
}
.info {
  width: 35%;
  color: white;
  margin-top: 14px;
}
.social {
  color: white;
  font-weight: bold;
  font-size: 30px;
}
.icons {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer {
    flex-direction: column;
  }
  .info {
    width: 100%;
    text-align: center;
  }
  .social {
    font-size: 20px;
    text-align: center;
    margin-top: 25px;
  }
  .icons {
    justify-content: space-around;
    margin-bottom: 40px;
  }
}
.press-req {
  font-size: 30px;
  color: white;
  font-weight: bold;
  margin-left: 10px;
}
.press-req1 {
  font-size: 15px;
  color: white;
  text-align: center;
  margin-top: 50px;
  margin-left: 10px;
}
.press-req2 {
  font-size: 15px;
  color: white;
  text-align: center;
  margin-top: 50px;
  margin-left: 10px;
  margin-bottom: 100px;
}
.licensing-text {
  color: white;
  font-size: 15px;
  margin-left: 10px;
  margin-bottom: 100px;
}
.licensing-head {
  color: white;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 35px;
  margin-left: 10px;
}
.forhire-text {
  color: white;
  font-size: 15px;
  margin-left: 10px;
  margin-bottom: 100px;
}
.forhire-head {
  color: white;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 30px;
  margin-left: 10px;
}
.contact-us-button {
  background-color: red;
  color: black;
  border: none;
  padding: 15px 32px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 150px;
  text-decoration: none;
}
.contact-us-button:hover {
  background-color: black;
  color: red;
  text-decoration: none;
}
a {
  text-decoration: none;
  color: white;
}

h3 {
  color: white;
  font-size: 30px;
  font-weight: bold;
  margin-left: 10px;
}
h1 {
  color: white;
  font-size: 30px;
  font-weight: bold;
  margin-left: 10px;
}
.about-us {
  color: white;
  font-size: 14px;
  margin-left: 10px;
  margin-top: 50px;
  margin-bottom: 100px;
}
