/* style.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: aqua;
}

.container {
    display: flex;
    
}

.heading {
    font-size: 40px;
    color: blue;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 10vh;

}

.input-container {
    text-align: center;
}

.error-box {
    background-color: #ff8080;
    color: #fff;
    font-size: 14px;
    padding: 8px;
    border-radius: 4px;
    margin-top: 5px;
}



