@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans', sans-serif;
}

body {
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero img {
  position: absolute;
  top: 0;
  left: 20px;
  width: clamp(100px, 10vw, 300px);
  height: auto;
}

#title {
  font-size: clamp(75px, 15vw, 150px);
  font-weight: 500;
  line-height: 1;
}

#subtitle {
  margin-top: 12px;
  font-size: 35px;
  opacity: 0.7;
}

.slack-button {
  margin-top: 28px;
}

.slack-button a {
  text-decoration: none;
  color: #000;
  background: #fff;
  padding: 10px;
  font-size: 32px;
  border: 2px solid #000;
  box-shadow: 0 0 0 #000;
  transition: all 0.1s ease;
}

.top-buttons a {
  text-decoration: none;
  color: #000;
  background: #fff;
  padding: 10px;
  font-size: 32px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
  transition: all 0.1s ease;
}

.slack-button a:hover {
  transform: translate(0px, -4px);
  box-shadow: 0px 4px 0 #000;
}

.top-buttons a:hover {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 #000;
}

.top-buttons {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 20px;
}

.prizes,
.skills {
  padding: 60px 0;
}

.prize-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 40px 20px;
}

.prize-title p {
  font-size: 14px;
  opacity: 0.6;
}

.carousel {
  width: 100%;
  overflow: hidden;
}

.track {
  display: flex;
  gap: 40px;
  padding: 20px 40px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.polaroid {
  width: 300px;
  height: 360px;
  background: #fff;
  border: 2px solid #000;
  padding: 10px 10px 20px;
  box-shadow: 6px 6px 0 #000;
  display: flex;
  flex-direction: column;
  transform: rotate(-2deg);
}

.polaroid:nth-child(even) {
  transform: rotate(2deg);
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 2px solid #000;
  background: #eee;
}

.polaroid p {
  margin-top: auto;
  padding-top: 10px;
  font-size: 14px;
  text-align: center;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.skills .track {
  animation: scroll-reverse 20s linear infinite;
}

@keyframes scroll-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.skills .prize-title {
  justify-content: flex-end;
  text-align: right;
}

.skills .prize-title h2,
.skills .prize-title p {
  text-align: right;
}

.skills .polaroid {
  transform: rotate(2deg);
}

.skills .polaroid:nth-child(even) {
  transform: rotate(-2deg);
}

.how {
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.big-title {
  font-size: clamp(75px, 15vw, 150px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 80px;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
}

.how-block {
  display: flex;
  flex-direction: column;
}

.how-block h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.how-block ul {
  margin-left: 20px;
}

.how-block li {
  font-size: 30px;
  margin-bottom: 12px;
}

.highlight {
  font-size: 30px;
  line-height: 1.4;
}