body{
    display: flex;
    flex-direction: column;
    align-items: center;
}
form.cityinput{
    
}
form input{
    border: 2px solid hsla(120, 100%, 25%, 0.445);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 10PX;
}
input[type="submit"]{
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    background-color: hsla(120, 100%, 25%, 0.445);
    padding: 10PX 20PX;
    transition: 0.3s;
}
input[type="submit"]:hover{
    background-color: hsla(120, 100%, 25%, 0.8);
    color: white;
}
.cart{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    border: 1px solid hsla(0, 0%, 0%, 0.63);
    background: linear-gradient(180deg,);
    padding: 50px 80px;
    border-radius: 10px;
}
.cart h1{
    font-size: 2.5rem;
    font-weight: bold;

}
.cart p{
    font-size: 1.5rem;
    font-weight: bold;
}