@tailwind base;
@tailwind components;
@tailwind utilities;

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: coconutz;
  src: url(../fonts/coconutz.otf);
}

@font-face {
  font-family: Aliens;
  src: url(/assets/font/Aliens\ Among\ Us.ttf);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: coconutz;
  font-weight: 400;
  color: #fff;
  background-color: #F5F5F5;
  overflow-x: hidden;
}

.font2 {
  font-family: coconutz;
}

p,
a,
li {
  font-size: 16px;
  font-family: coconutz;
}

h1,
h2 {
  font-family: Aliens;
}

/* - ======================== Loading overlay ============================*/
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Loader animation */
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.header,
.about,
.join,
.bullrun,
.footer {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;

}

.header {
  /* background-image: url("/1\ \(7\).jpg"); */
  height: 60vw;
}

.main {
  padding: 5vw;
}


.about {
  background-image: url("/6\ \(3\).jpeg");
  padding: 5vw;
  margin-top: -5vw;
  position: relative;
  z-index: 99;
}

.join {
  background-image: url("../images/Vector\ 2.png");
  padding: 10vw 5vw;
  margin-top: 2vw;
  position: relative;
  z-index: 99;
}

.bullrun {
  background-image: url("../images/Vector\ 3.png");
  padding: 8vw 5vw;
  margin-top: -9vw;
  position: relative;
  z-index: 99;
  height: 80vw;
}

.roadbox {
  box-shadow: 30px 30px 0px -3px #00000040;
}


.footer {
  background-image: url("../images/Vector\ 4.png");
  padding-top: 6vw;
  position: relative;
  z-index: 99;
  margin-top: 6vw;
}


@media only screen and (max-width: 600px) {

  html,
  body {
    overflow-x: hidden;
  }

  .header {
    /* background-image: url("../images/headermobile.png"); */
    height: 100%;
    padding-bottom: 25vw;
  }

  .main {
    padding: 5vw;
    margin-top: 5vw;

  }

  .about {
    background-image: url("/6\ \(1\).jpeg");
    padding: 5vw;
    margin-top: -27vw;
    position: relative;
    z-index: 99;
    padding-top: 25vw;
    padding-bottom: 66vw;
  }


  .join {
    background-image: url("../images/join-mobile.png");
    padding: 20vw 5vw;
    margin-top: 2vw;
    position: relative;
    z-index: 99;
    /* padding-bottom: 70vw; */
  }

  .roadbox {
    box-shadow: 15px 15px 0px -3px #00000040;
  }

  .footer {

    padding-top: 15vw;
    z-index: 99;
    margin-top: 10vw;
  }

  .bullrun {
    background-image: url("../images/blacklayar.png");
    padding: 35vw 5vw;
    margin-top: -55vw;
    height: 100%;
    /* padding-bottom: 64vw; */
  }

}