.gradient_bg {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    -webkit-animation: gradient 15s ease infinite;
    animation: gradient 15s ease infinite;
    height: 100vh;
}

.gradient_bg:hover{
    -webkit-animation: gradient 15s ease infinite;
    animation: gradient 15s ease infinite;
}


@-webkit-keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.temp-room{
    text-align: center;
}
.livewire-tile {
    background-color: rgba(255,255,255,.3);
}
.livewire-tile a{
    color: #000;
}

.weather-tile-day__img img,
.weather-tile-day__rain-probability,
.weather-tile-day__day {
    margin: 0 auto;
}

.weather-tile-day__temp__max,
.weather-tile-day__temp__min,
.weather-tile-day__rain-probability,
.weather-tile-day__day {
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.weather-tile-day__temp__max {
    color: red;
}

.weather-tile-day__temp__min {
    color: blue;
}

.gatto_prompt {
    bottom: 0;
    position: fixed;
}

.gatto_prompt__textarea {
    width: 100%;
    min-height: 24px!important;
    padding: 0px;
}

@media screen and (max-width: 600px) {
    .weather-tile-day__img img {
        width: 32px;
        height: auto;
    }
    .weather-tile-day__temp__max,
    .weather-tile-day__temp__min,
    .weather-tile-day__rain-probability,
    .weather-tile-day__day {
        font-size: 10px;
        font-weight: 800;
    }
}
