@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Lexend", sans-serif;
}

html {
  font-size: 16px;
}

/* SCROLLBAR Customizations */
::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

::-webkit-scrollbar-track {
  background-clip: content-box;
  background-color: rgba(0, 0, 0, 0);
  width: 20px;
}

::-webkit-scrollbar-thumb {
  border: 1px solid transparent;
  background-color: var(--primary);
  border-radius: 2px;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

body {
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  font-size: 1rem;
}
h1 {
  font-size: 1.75rem; /* 28px */
}
h2 {
  font-size: 1.5rem; /* 24px */
}
h3 {
  font-size: 1.125rem; /* 18px */
}
h4 {
  font-size: 1rem; /* 16px */
}
h5 {
  font-size: 0.875rem; /* 14px */
}
h6 {
  font-size: 0.75rem; /* 12px */
}
p {
  font-size: 0.875rem;
}
ul {
  list-style: none;
  padding: 0;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media screen and (max-width: 320px) {
  html {
    font-size: 12px;
  }
}



.wrapper {
  position: relative;
  background-image: url("./csBg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100dvw;
  height: 100dvh;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 85%;
}

.imageLogo {
  height: 100%;
  max-height: 51.17px;
  cursor: pointer;
  display: inline-block;
  margin: 2.5rem;
}

.contentWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.mainImage {
  max-width: 36.875rem;
  max-height: 24.5rem;
  width: 100%;
  height: 100%;
}

.title {
  max-width: 45.5rem;
  font-size: 4rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    #9451a0 0%,
    #ea176a 25%,
    #ef3d25 50%,
    #f78534 75%,
    #febb19 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.content {
  color: #333;
  font-family: Lexend;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

@media screen and (max-width: 1250px) {
  .contentWrapper,
  .comingSoonContent {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    background-position: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contentWrapper {
    padding: 2rem;
  }

  .mainImage {
    max-width: 26rem;
    max-height: 15rem;
  }

  .title {
    font-size: 2rem;
  }

  .content {
    margin-bottom: 0.2rem;
  }
}

.dateContainer{
  display: flex;
  align-items: center;
  gap: 40px;
}
.dateWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.dateNumber {
  color: #000;
  font-size: 4rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.dateText {
  color: #50f;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

@media screen and (max-width: 1250px) {
  .dateContainer {
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .dateContainer {
    gap: 20px;
  }

  .dateNumber {
    font-size: 2.5rem;
  }
  .dateText {
    font-size: 1rem;
  }
}
