/* Reset margins and paddings for body */
body {
  background-color: #0099FF;
  color: white;
  font-family: 'Avenir', Arial, sans-serif;
  text-align: center;
  padding: 1rem;
  margin: 0;
}

/* Heavy font weight */
.heavy {
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.125rem); /* scales between 40px to 50px */
}

/* Bold font weight */
.bold {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem); /* scales between 24px to 32px */
}

/* Demi-bold font weight */
.demi-bold {
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem); /* scales between 20px to 24px */
}

/* Horizontal line styling */
hr {
  border: none;
  border-top: 3px solid white;
  width: 80%;
}

/* Container padding for smaller devices */
.container {
  max-width: 900px;
  margin: 0 auto;
}

.frog {
  max-width: 100px;
  height: auto;
}

.link {
  text-decoration: none;
}