body{
    width:100%;
    height:100vh;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    width: 300px;
    background: linear-gradient(135deg, #08cbab, #9e46e6);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box img {
    width: 30px;
    height: 30px;
}
.box1{
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 40px;
}
.box{
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    margin-bottom: 10px;
    margin-right: 80px;
}
.weather{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 9px;
    margin-bottom: 20px;
}
.search{
    align-items: center;
    width: 28px;
    height: 25px;
    background-color: white;
    padding: 6px;
    border-radius: 10px;
}
.search:active{
    transform: scale(0.9);
}
#input{
    width: 200px;
    height: 30px;
    border: none;
    padding: 3px;
    border-radius: 5px;
}