body {
    margin: 0;
    background-color: rgb(30, 30, 30);
}
main {
    position: relative;
    width: 100vw;
    height: 100vh;
}
.layers {
    position: relative;
    width: 100%;
    height: 100%;
}
.gradient {
    position: fixed;
    width: calc(100vw);
    height: calc(100vh);
}
.info {
    position: fixed;
    top: 2rem;
    left: 2rem;
    font-family: sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-shadow: 0 0 0.5rem #00000050;
}
.time {
    font-weight: 900;
    font-size: 3rem;
    line-height: 3rem;
}
.location {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 600;
}
.weather {
    display: flex;
    font-size: 1.5rem;
    line-height: 1.5rem;
}
.temperature {
    font-weight: 600;
}
.forecast {
    font-weight: 300;
}