html {
    scroll-behavior: smooth;
    font-family: 'Fira Code', monospace;
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    overflow-x: hidden;
}

.title {
    margin-top: 0;
    font-weight: 900;
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
}

.container {
    text-align: center;
    width: fit-content;
    margin: 1rem auto;
    padding: 1.5rem;
    border: 0.1rem solid black;
    padding-bottom: 0;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

input[type="text"] {
    text-align: center;
    width: 23rem;
    height: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
    border: 0.1rem solid black;
}

.error {
    color: red;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.btn {
    color: black;
    background-color: rgb(255, 187, 0);
    height: 2.5rem;
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    border: none;
    font-size: 1.2rem;
    transition: letter-spacing 0.4s ease-in-out, width 0.4s ease-in-out;
}

.btn:hover {
    letter-spacing: 0.1rem;
    width: fit-content;
    padding: 0.5rem 1rem;
}

.container p {
    text-align: center;
    margin-top: 1rem;
}

.container p a {
    color: black;
    text-decoration: none;
}

.container p a:hover {
    text-decoration: underline;
}