@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto Slab', serif;

    
}
main{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to right,#3498db, #2980b9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}input{
    
    width: 400px;
    border-radius: 29px;
    border: none;
    outline: none;
    font-size: 30px;
    padding:10px 40px; 
    color: #2980b9;
    text-align: center;
    margin-top: 10px;
}
.result{
    display: flex;
    font-size: 50px;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.result div{
    
    color: white;
}

.logo{
    width: 500px;
    height: 300px;
}

