body {
    font-family: "Computer Modern", serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: #292929;
}

.lighter {
    color: #636363;
}

.no-link-style a {
  all: unset;
  cursor: pointer;
}

.centered-container {
    margin: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

input[type="text"],
button {
    font-family: "Computer Modern", serif;
    font-size: 1rem;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }

    p,
    input[type="text"],
    button {
        font-size: 1rem;
    }

    .centered-container {
        margin: 1rem;
    }
}