body {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    background-color: lightblue;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

#title{
    margin: 5px;
}

.header {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2rem;
    border-top: 10px solid red;
    border-bottom: 10px solid blue;
    border-radius: 10px;
    background-color: white;
    margin: 0;
}

.animate-title {
    animation-delay: 500ms;
    animation: Title .5s ease-in forwards;
}

@keyframes Title {
     0% {
        transform: translate(-1000, 0);
        }

    20% {
        transform: translate(-900, 0) scale(.1);
    }

    45% {
        transform: translate(-600px, 0) scale(.4);
        color: red;
        opacity: 0.5;
    }

    70% {
        transform: translate(-300px, 0) scale(.7);
        color: blue;
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.navbar {
    padding: 6px;
    margin-bottom: 6px;
}

.navbar>a:hover {
    border-top: 3px solid red;
    border-bottom: 3px solid blue;
    background-color: white;
    transition-duration: 0.2s;
    transition-timing-function: ease-in;
    transition-delay: 0.1s;
}

h2 {
    font-size: 1.4rem;
}

h2>a {
    text-decoration: none;
}

h2>a:hover {
    text-decoration: none;
    border-top: 2px solid red;
    border-bottom: 2px solid blue;
    background-color: white;
    transition-duration: 0.2s;
    transition-timing-function: ease-in;
    transition-delay: 0.1s;
}

a {
    text-decoration: none;
    color: black;
}

.gallery img {
    width: 100%;
    max-width: 350px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border-top: 2px solid red;
    border-bottom: 2px solid blue;
}

.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 16px;
}

.contact-info {
    text-align: center;
    line-height: 1.5;
}

.footer {
    font-size: 1.1rem;
    text-align: center;
}

.lang-website {
    text-align: center;
    font-size: 1.2rem;
}

.lang-name {
    text-align: center;
    font-size: 1.2rem;
    list-style: none;
}

@media(max-width:960px) {
    .lang-name{
        font-size: 0.9rem;
    }

    h2 {
    font-size: 1.2rem;
    }

}

.status-online>a:hover {
    color: green;
    background-color: white;
    border-top: 2px solid red;
    border-bottom: 2px solid blue;
    padding: 3px;
    transition-duration: 0.2s;
    transition-timing-function: ease-in;
    transition-delay: 0.1s;
}