*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    /* background-color: black; */
    background-color: black;
}
.main{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.shadow{
    border-radius: 10px;
    box-shadow: 10px 10px 10px 0px grey, 0px 20px 40px gray;
}
.main h1{
    margin-bottom: 10px;
    color: wheat;
}
input{
    width: 210px;
    height: 40px;
    margin-bottom: 5px;
    border-radius: 5px;
    outline: none;
}
.row{
    gap: 5px;
}
.button{
    width: 50px;
    height: 50px;
    color:black;
    border-radius: 5px;
    outline: none; 
}
.button:last-child{
 background-color: orange;
}
.button:hover{
    color: white;
    background-color: black;
}