*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: 'Open Sans';

}

.container{
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    height: auto;
    background-color: #f9f9f9;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}
h1{
    
    font-size: 20px;
    height: auto;
    text-transform: uppercase;
    font-weight: 700;
    color:#007BFF;
    margin-bottom: 10px;
}

#text{
    text-align: center;
    font-weight: 500;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}
input[type='submit']{
    padding: 10px 20px;
    color:#fff;
    background-color: #007BFF;
    border: none;
    cursor: pointer;
}
