body {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-style: normal;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    height: 100vh;
    margin: 0;
    overflow: auto; 
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    overflow-y: auto; 
    max-height: 90vh; 
}

h1 {
    text-align: center;
    color: #333;
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
}

label {
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

h2 {
    text-align: center;
    color: #333;
}

footer {
    text-align: center;
    font-size: 12px;
    color: #555;
    display: block;
    bottom: 10px;
    width: 100%;
    background-color: #f4f4f9;
    padding: 5px 0;
}

footer .name {
    font-weight: bold;
    color: #4CAF50; /* Optional: change color of the name */
}
