/*
Theme Name: METZ
Author: Leki
Template: flatsome
Version: 1.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.label {
    width: fit-content;
    background: #ff572245;
    padding: 1px 5px 0px 5px;
    border-radius: 5px;
    color: #FF5722;
    font-weight: bold;
}

.background-gradient {
    background: rgb(238,214,32);
background: linear-gradient(16deg, rgba(238,214,32,1) 0%, rgba(247,200,42,0.8913690476190477) 19%, rgba(248,239,166,1) 45%, rgba(248,239,168,1) 46%, rgba(255,255,255,1) 100%);
}

.float-animation {

animation: float 2s infinite ease-in-out;
}

@keyframes float {
0% {
    transform: translateY(0);
}
50% {
    transform: translateY(-10px); /* Povečajte ali zmanjšajte za večji efekt */
}
100% {
    transform: translateY(0);
}
}

.rounded img {
    border-radius: 30px;
}

.first-section {
    margin-top: -90px;
}

@media only screen and (max-width: 48em) {

}