body {
    background-color: rgb(255, 255, 150);
    width: 50%; 
    margin: 0 auto; 
    height: 100vh;
    overflow: hidden;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
}

form {
    width: 100%;
    text-align: center;
}

h1 {
    font-family: 'Roboto Mono' monospace;
    text-align: center; 
}


h2 {
    font-family:'Times New Roman', Times, serif;
    text-shadow: white;
}

button {
    background-color: #ffc800;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

button:hover {
    background-color: #ff7300;
}

p {
    font-family:'Times New Roman', Times, serif;
}

label {
    font-family:'Times New Roman', Times, serif;
}

input {
    border: groove rgb(0, 0, 0);
}
