body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-image: url('weather.jpg');
    background-size: cover;
    background-position: center;
}

.container {
    text-align: center;
}

.container h1 {
    color: black;
    font-size: 5rem;
}

.location-input {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.location-input #cityInput {
    height: 40px;
    font-size: 1.45rem;
    text-align: center;
    border: 1px solid white;
    border-radius: 10px;
}

.buttondiv {
    margin-top: 1.5rem;
}

.buttondiv button {
    font-size: 1.4rem;
    border: 1px solid white;
    border-radius: 10px;
    padding: 5px;
}

.buttondiv button:hover {
    transform: translate(-5px, -5px);
    transition: all .5s;
}

.buttondiv #searchButton {
    margin-right: 5px;
}

#weather-data {
    margin-top: 20px;
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
}