*{
    margin: 0;
    padding: 0;
    box-sizing: 0;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(rgb(76, 76, 76), rgb(0, 0, 0));
    font-family: sans-serif;
    color: white;
}
.location,
.temperature{
    height: 30vh;
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.temperature{
    flex-direction: column;
}
.temperature-section{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.temperature-section span{
    margin: 10px;
    font-size: 30px;
}
.temperature-section h2{
    font-size:40px;
}
