body {
    background-color: #ebebeb;
    margin: 0;
    padding: 0 0 2em 0;
}
.sade {
    position: relative;
    /* background: linear-gradient(rgb(22, 8, 75), rgb(102, 6, 121)); */
    background: linear-gradient(rgb(9, 4, 27), rgb(102, 6, 121), rgb(156, 155, 54) 115%);
    height: 100vh;
}

.sade:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    /* url('./images/200-10-o50.png'), */
    background-image:
        url('./images/200x100-7-o40.png'),
        url('./images/200-5-o25.png');
    animation: sade 15s linear infinite;
}

.city {
    background-image: url('./images/kasa.png'), url('./images/city.png');
    background-position: bottom;
    background-repeat: repeat-x;
    z-index: 4;
    position: relative;
    height: inherit;
}

.city:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 6;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image: url('./images/400-sf10-o80.png');
    animation: sadefront 10s linear infinite;
}

@keyframes sade {
    0% { background-position: 0px 0px, 0px 0px;}
    50% { background-position: 50px 200px, -400px 600px;}
    100% { background-position: 100px 400px, -800px 1200px;}
}

@keyframes sadefront {
    0% { background-position: 0px 0px;}
    50% { background-position: 200px 200px;}
    100% { background-position: 400px 400px;}
}


.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text-common {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    text-transform: uppercase;
    /* text-shadow: rgb(255, 0, 212) 0 0 8px; */
    animation: candlelight var(--candlight-time) ease-in-out infinite;
}

:root {
    --violetti: rgb(255, 0, 212);
    --yellow-white: rgb(253, 255, 149);
    --candle: var(--yellow-white);
    --candlight-time: 5.25s;
}

@keyframes candlelight {

    0% { text-shadow: var(--candle) 0 0 12px; }
    50% { text-shadow: var(--candle) 0 0 22px; }
    100% { text-shadow: var(--candle) 0 0 12px; }
    
}

.text-header {
    font-size: 4em;
    font-weight: 800;
    color: rgb(63, 18, 18);
    letter-spacing: 0.3em;
    

}

.text-info {
    font-size: 1em;
    font-weight: 600;
    color: rgb(179, 179, 179);
    color: rgb(255, 255, 255);
    letter-spacing: 0.25em;
    max-width: 600px;
}

.hiutale {
    background-image: url("images/hiutale.svg");
    height: 50px;
    width: 50px;
    background-size: contain;
    background-repeat: no-repeat;
}