*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    
}
body{
    background-color: black;
    transition: 0.5s;
}
.main{
    width: 400px;
    height: 400px;
   
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#search{
    margin: 20px;
    font-size: 40px;
    color: white;
    font-family:Verdana, Geneva, Tahoma, sans-serif ;
}
.body{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
}
button{
    height: 40px;
    width: 150px;
    background-color: bisque;
    font-size: 30px;
    color: black;
    border-radius: 10px;
    margin: 20px;
}
