@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  background: black;
  scroll-behavior: smooth;
  overflow-y: scroll;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, transparent, #00bcd4);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  max-height: 10px;
}

.container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container h2 {
  color: #fff;
  text-align: center;
  font-size: 11vw;
  z-index: 1000;
  font-weight: 600;
}
.container h2 span {
  font-size: 0.3em;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 400;
}

.block {
  position: absolute;
  width: 50px;
  height: 80px;
  border: 0.01px solid #00bbd434;
  background: black;
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
}
section {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about {
  height: 80%;
  width: 80%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.about h2 {
  font-size: 2em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}
.about p {
  margin-top: 40px;
  letter-spacing: 0.1em;
  align-content: center;
  line-height: 40px;
  text-align: center;
}
.about a {
  margin-top: 200px;
  text-decoration: none;
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.about a h3 {
  color: #00bcd4;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 15px;
}

#rules {
  background: rgba(13, 164, 175, 0.7);
  height: 90vh;
}

.rules {
  height: 90%;
  width: 90%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.rules h2 {
  font-size: 2em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.rules ol li {
  padding-top: 20px;
  padding-bottom: 10px;
  list-style: upper-roman;
  letter-spacing: 0.2em;
  line-height: 30px;
  text-align: center;
}

#svg {
  background-color: rgba(13, 164, 175, 0.7);
}
#timeline {
  height: 90vh;
}

.timeline {
  width: 90%;
  height: 90%;
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.timeline h2 {
  font-size: 2em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
  ::-webkit-scrollbar {
    width: 0;
  }
  .container {
    height: 100vh;
  }
  section {
    padding-top: 50px;
    width: 100%;
    height: 90vh;
    font-size: 14px;
  }
  #about a {
    display: none;
  }
  #rules {
    padding: 0 20px;
  }
  #timeline .content {
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .container {
    height: 100vh;
    margin-bottom: 50px;
  }
  section {
    width: 100%;
    min-height: 100vh;
    font-size: 12px;
    overflow-y: visible;
    height: fit-content;
  }
  .svg2 {
    display: none;
  }
  .svg {
    display: none;
  }
  #rules {
    height: fit-content;
    padding: 20px 20px;
  }

  #timeline {
    align-items: center;
    justify-content: center;
    height: fit-content;
  }
  #timeline .card {
    max-width: 300px;
    min-height: 100px;
    font-size: 12px;
  }
}
