@import url('https://fonts.googleapis.com/css2?family=Comfortaa&family=Comme&family=PT+Sans+Narrow:wght@700&family=Poppins&family=Sono&display=swap');
body{
    font-family: 'Sono', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background-image: url(city-lights-street-buildings-605.jpg);
    background-size: cover;
}
main{
    font-family: 'Sono', sans-serif;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 600px;
    height: 400px;
    background: transparent;
    box-shadow: 2px 10px 15px black;
    background: linear-gradient(140deg, blue, yellow);
    border-radius: 25px;
}
input{
    height: 30px;
    width: 50%;
    text-align: center;
    margin: 10px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
}
button{
    height: 50px;
    width: 25%;
    border-radius: 10px;
    font-weight: bold;
    border: 2px blue solid;
    cursor: pointer;
    font-size: 24px;
}
button:hover{
    border: 2px black solid;
    background-color: blue;
    color:white;
    transition: 0.5s;
}
p{
    width: 100%;
    height: 25%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: black;
    font-weight: bold;
    flex-direction: column;
    font-size: 24px;
}