root {
    --blue: #5788d6;
    --pink: #eabfcd;
}

body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    place-items: center;
    font-family: 'Heebo', Arial, Helvetica, sans-serif;
    color: white;
    background: rgb(87,136,214);
    background: linear-gradient(180deg, rgba(87,136,214,1) 0%, rgba(234,191,205,1) 100%);
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

header {
    margin: 1em 0;
    font-size: clamp(1em, 3vw, 30px);
}

main {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    min-width: 50%;
    padding: 5vw;
    border-radius: 20px;
    background: url('https://cdn.glitch.com/48eee6cb-fffd-43d3-8f98-4bf5499146e2%2Furi_mh1618065792930.jpg?v=1618066395741') rgba(0,0,0,0.5) no-repeat center;
    background-size: cover;
}

h1 {
    margin: 0;
    font-size: clamp(2em, 10vw, 74px);
}

.icon {
    display: block;
    max-height: 200px;
}

h2 {
    font-size: 2em;
}

h3 {
    line-height: 1em;
    text-align: right;
    font-size: clamp(3em, 26vw, 250px);
    margin: 0 0 0 6vw;
    font-weight: normal;
}

.temperature-title {
    display: none;
}

ul {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    grid-gap: 20px;
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
}

.value {
    font-size: 3em;
    display: block;
    line-height: 1em;
}

footer {
    margin: 1em 0;
}