body {
    background-color: white;
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
}

form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
    width: 90%;
    background-color: whitesmoke;
}

.container > div {
    border: 5px solid black;
    border-radius: 25px;
    width: 40%;
    background-color: whitesmoke;
    padding: 15px;
}
