body {
    background-color: rgb(240, 240, 240);
    padding-top: 100px;
}

body::before {
    content: "";
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 9999;
}

.logo {
    width: 300px;
    height: auto;
    position: relative;
    border-style: solid;
    border-width: 25px 50px;
    border-color: grey;
    border-radius: 25px;
    background-color: grey;

    opacity: 0;
    animation: slideDown 0.6s ease-out forwards;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
}

.header-content img {
    width: 200px;
    height: auto;
}

.header-content h1 {
    font-size: 2em;
    margin: 0;
    text-align: left;
}


h1 {
    position: relative;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background-color: #00a808;
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    font-family: sans-serif;

    /* Animation */
    opacity: 0;
    transform: translateY(-100%);
    animation: slideDown 0.3s ease-out forwards;
}

.navbar {
    display: block;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    position: relative;
}

.navbar ul li.translate {
    position: absolute; 
    right: 20px; 
    margin-left: 0; 
}

.navbar li {
    margin: 0 20px;
}

@media (max-width: 640px) {
    .navbar ul li.translate {
        position: static;
        margin-left: 10px;
        order: 999; 
    }
    .navbar ul {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
}

.navbar a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #ffffff;
}

    /* Start animation */
@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-block {
    display: flex;
    flex-direction: column;

    opacity: 0;
    animation: slideDown 0.3s ease-out forwards;
}

.text {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    border: rgb(255, 255, 255) 20px solid;
    border-radius: 10px;
    width: 780px;
    height: auto;
    font-size: 18px;
    word-spacing: 4px;
    font-family: Arial, Helvetica, sans-serif;

    opacity: 0;
    animation: slideDown 0.3s ease-out forwards;
}

body.no-page-scroll {
    overflow: hidden;
}