@font-face {
    font-family: 'PressStart2P';
    src: url('../fonts/Press_Start_2P/PressStart2P-Regular.ttf');
}

body {
    background-color: black;
    color: white;
    font-family: 'PressStart2P';
    margin: 0;
    padding: 1rem;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: black;
}

.logo-mobile {
    font-size: 1rem;
    margin: 0;
}

.burger-icon {
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}

.burger-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #111;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.burger-menu a {
    padding: 1rem;
    border-bottom: 1px solid #222;
    background: none;
    color: white;
    font-size: 14px;
    text-decoration: none;
    font-family: 'PressStart2P';
    text-align: left;
    cursor: pointer;
}

.burger-menu a:hover,
.burger-menu button:hover {
    background-color: #222;
    color: blue;
}

.lang-switch {
    margin-top: 10px;
}

.lang-switch a {
    padding: 8px 12px;
    background-color: black;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.lang-switch a.active {
    background-color: white;
    color: black;
}

main h2 {
    text-align: center;
    color: red;
    font-size: 1.4rem;
    margin-top: 2rem;
}

section h3 {
    color: red;
    font-size: 1.2rem;
    margin-top: 2rem;
}

section p {
    text-align: justify;
    font-size: 1rem;
    color: white;
    margin: 0.8rem 0;
}

section p strong {
    color: red;
}

.donation-btn {
    background-color: green;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-family: 'PressStart2P';
    cursor: pointer;
    margin: 1rem;
}

.donation-btn:hover {
    background-color: darkgreen;
}

footer {
    text-align: center;
    padding: 2rem 0 1rem;
    font-size: 0.8rem;
    color: white;
}

@media (min-width: 769px) {
    body {
        padding: 2rem 5rem;
        font-size: 16px;
    }

    .logo-mobile {
        font-size: 1.4rem;
    }

    main h2 {
        font-size: 2rem;
    }

    section h3 {
        font-size: 1.4rem;
    }

    section p {
        font-size: 1.1rem;
    }

    footer {
        font-size: 0.9rem;
    }
}