*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 
    Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
     'Helvetica Neue', sans-serif;
     font-size: 16px;
     background-color: rgb(72, 72, 109);
     color: skyblue;
}


header{
    padding: 10px;
    background-color: black;
    text-align: center;
}

main{
    padding-top: 60px;
}

.weather-container{
    width: 90%;
    margin: 0 auto;
    border: 1px solid gray;
    border-radius: 12px;
    padding: 30px 20px;
    max-width: 500px;
    background-color: rgba(0, 0, 0, 0.548);
}
.weather-img-container{
    width: 200px;
    height: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.weather-img{
    width: 100%;
}

.weather-summary{
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}


.temps{
    display: flex;
    justify-content: space-between;
}










