body, button {
  font-family: 'EB Garamond', serif;
}
body {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;

    /*
     * Set a responsive base font size.
     * It will be at least 16px, scale with 4% of the viewport width, but not exceed 22px.
     */
    font-size: clamp(16px, 7.5vmin, 80px);
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 8.5vmin;
  }
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button-primary {
    background-color: #007bff;
    color: white;
}

.button-secondary {
    background-color: #6c757d;
    color: white;
}