* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
  }

body {
    background-image: linear-gradient(to right top, #845ec2, #b45cb6, #d65fa5, #ed6993, #fa7a82, #ff8977, #ff9a6e, #ffac69, #ffbe66, #ffd166, #ffe469, #f9f871);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}

input {
    height: 50px;
    width: 250px;
    border-radius: 20px;
    border: none;
}

button {
    height: 50px;
    width: 50px;
    border-radius: 20px;
    background-color: green;
    color: white;
    border: none;
}

.getCity {
    align-items: center;
    justify-content: center;
}

.showWeather {
    width: 300px;
    height: 500px;
    margin-top: 10px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: rgb(244, 250, 255);
}

.datePosition{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

img {
    margin-top: 150px;
}

.spaceBetween {
    margin-left: 15px;
    margin-bottom: 10px;
}