body {
    margin: 0;
    display: flex;
    justify-content: center;
    margin-top: 6rem;
}

div {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    font-size: 18px;
    font-family: "Lisu Bosa", serif;
    border: 2px solid black;
    border-radius: 5px;
    width: 250px;
    height: fit-content;
}

#title {
    font-size: 30px;
    font-family: "Lobster", sans-serif;
    margin-bottom: 2rem;
}

div input {
    background-color: #E9EAEC;
    border: none;
    border-radius: 5px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: "Lisu Bosa", serif;
    font-size: 18px;
}

input::placeholder {
    font-family: "Lisu Bosa", serif;
    font-size: 18px;
}

div input:focus {
    outline: none;
}

div button {
    background-color: #C3E0E5;
    border: none;
    border-radius: 5px;
    margin-top: 0.5rem;
    padding: 0.5rem;
    font-size: 18px;
    font-family: "Lisu Bosa", serif;
}

div button:hover {
    cursor: pointer;
}

div a {
    color: blue;
}

#reset {
    margin-top: 1rem;
}