.terminal {
    color: var(--terminal-color);
    width: 100%;
    resize: none;
}

.weather-temp {
    color: var(--fg-color);
    font-size: xx-large;
    text-align: center;
    opacity: 20%;
    font-family: monospace;
}

.weather-temp h3 {
    margin: 0px;
    margin-top: 20px;
}
.weather-temp h4 {
    margin-top: 0px;
    font-size: large;
}

.icons {
    margin-top: 5%;
    margin-left: 2%;
}

i::before{
    background:transparent;
    color: var(--ui-color-4);
    /* opacity: 80%; */
}

.icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 15px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 0;
    transition: transform 400ms;
}
.icon:hover {
    transform: scale(1.05);
}

.icon i {
    --glass-color: var(--ui-color-1);
    --glass-opacity: 1px;
    cursor: default;
}

.centered {
    display: flex;
    justify-content: center;
    width: 100%;
}