/* General */
body {
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: grey;
}

h1, h2 {
    color: black;
}

/* Input fields and labels */
.input-container {
    margin: 10px 0;
}

input[type="text"] {
    padding: 8px;
    width: 200px;
    margin-left: 10px;
}

/* Buttons */
.buttons {
    margin-top: 5px;
}

button {
    padding: 10px 15px;
    margin: 1px;
    cursor: pointer;
    background-color: grey;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    justify-content: center;
}

/* Hover effect */
button:hover {
    background-color: lightblue;
}


