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

:root {
  --main: #F7931E;
  --light: #dbdbdb;
  --dark: #222222;
  --white: white;
  --accent: rgb(7, 159, 7);
}


html {
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: black;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

input {
  color: var(--main);
}

.input-field {
  width: 250px;
  padding: 10px;
  border-radius: 6px;
  background: transparent;
  border: 2px solid var(--main);
}

.btn {
  width: 150px;
  padding: 10px;
  border-radius: 6px;
  background: var(--main);
  color: var(--dark);
  border: none;
  margin-left: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.btn:hover {
  color: var(--main);
  background: var(--dark);
  border: 1px solid var(--main);
}


/* NAVBAR*/

.topnav {
  display: none;
}

.navbar-container {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px;
}

.navbar-wrapper {
  width: 100%;
}

.nav-logo {
  width: 400px;
}

.nav-logo img {
  width: 100%;
}

.nav-icons {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}


.home-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
}

.home-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
  margin-left: 10px;
  font-size: 20px;
}

.home-icon a:hover {
  color: var(--light);
}

.home-icon img {
  width: 18px;
}

#myLinks img {
  width: 15px;
 }
 

#myLinks a {
 font-size: 16px;
}


/* END NAVBAR*/

/* BACKGROUND IMAGES*/

.image-box {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: fade 15s infinite alternate;
  opacity: 0.25;
}

@keyframes fade {
  0% {
    background-image: url(../images/bg01.jpg);
  }
  50% {
    background-image: url(../images/bg02.jpg);
  }
  75% {
    background-image: url(../images/bg03.jpg);
  }
  100% {
    background-image: url(../images/bg04.jpg);
  }
}

/* END BACKGROUND IMAGES*/




/* MAIN*/
.main-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
  padding: 15px;
  /* position: relative;
  height: 100vh; */
}


.main-wrapper {
  width: 100%;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* SUBSCRIBE FORM*/
.subscribe-wrapper-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  border: 2px solid var(--main);
  padding: 40px;
  background-color: var(--dark);
  border-radius: 20px;
}

.subscribe-wrapper-container h1 {
  color: var(--light);
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 40px;
  line-height: 40px;
  text-transform: uppercase;
}

.subscribe-wrapper-container h1 span {
  color: var(--main);
  font-size: 60px;
}

.subscribe-wrapper-container p {
  color: var(--light);
  letter-spacing: 1px;
  margin-top: 20px;
  font-size: 19px;
  font-weight: 400;
} 

.form-subscribe-container {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.form-subscribe-container button {
  margin-top: 0;
}

.form-subscribe-container input {
  height: 40px;
}

/*END SUBSCRIBE FORM*/


/* SEE PLACEHOLDER CSS FOR UPCOMING TOURNAMENTS*/


/* FOOTER*/

.footer-container {
  width: 100%;
  height: 270px;
  background-color: var(--main);
}

.footer-wrapper {
  width: 100%;
  padding: 15px;
}

.footer-contact, .footer-form {
  width: 100%;
  text-align: center;
  padding-top: 20px;
}

.footer-contact p {
  font-size: 17px;
  color: var(--dark);
}

.footer-contact p span {
  font-weight: 600;
}

.footer-contact a {
  font-size: 17px;
  color: var(--dark);
}

.footer-form-docs {
  width: 100%;
  margin-top: 15px;
}

.footer-docs {
  width: 300px;
  margin-top: 10px;
  padding: 5px 15px;
}

.footer-form-docs a {
  font-size: 17px;
  color: var(--main);
  background-color: var(--dark);
}
.footer-form-docs a:hover {
  color: var(--dark);
  background-color: var(--light);
}

.rules-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 25px;
}

.rules-btn-item {
  width: 150px;
  border: 1px solid var(--main);
}


.copy {
  width: 100%;
  text-align: center;
  margin-top: 50px;
  opacity: 0.5;
  font-size: 14px;
}


/* END FOOTER*/