*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    position: relative;
    height: 100vh;
}
h1{
    margin: 1rem 0;
    font-size: 2.5em;
}

.weather-app{
    margin: 0 auto;
    display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     position: absolute;
     left: 50%;
     top: 5%;
     transform: translateX(-50%);
}
label{
    margin: 1rem 0;
    font-size: 1.7em;
}
input{
    margin-bottom: 1rem;
}
button{
    padding: 1rem 2rem;
    font-size: 1.2em;
}

.results{
    position: absolute;
    background-color: yellow;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.results h1{
    margin: 1rem 0;
    font-size: 1,2em;
}
.results p{
    font-size: 0.9em;
}

.giphy{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 70%;
}
img{
    height: 200px;
    width: 250px;
}