@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;
}

.logo-mobile {
    font-size: 1rem;
    margin: 0;
}

.burger-icon {
    font-size: 1.6rem;
    cursor: pointer;
    color: white;
}

.burger-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #111;
    z-index: 10;
}

.burger-menu a,
.burger-menu button  {
    padding: 1rem;
    border-bottom: 1px solid #222;
    background: none;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    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: 6px 12px;
    background-color: black;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 4px;
}

.lang-switch a.active {
    background-color: white;
    color: black;
}

main h2,
main h3 {
    color: red;
    font-size: 1.2rem;
    margin-top: 2rem;
}

main p {
    color: white;
    text-align: justify;
    margin: 1rem 0;
    font-size: 0.9rem;
}

ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

ul li {
    margin-bottom: 0.5rem;
}

progress {
    width: 100%;
    height: 1rem;
    appearance: none;
}

progress::-webkit-progress-bar {
    background-color: gray;
    border-radius: 4px;
}

progress::-webkit-progress-value {
    background-color: #ff4444;
    border-radius: 4px;
    box-shadow: 0 0 4px #ff4444;
}

.burger-menu button {
    background-color: green;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-family: 'PressStart2P';
    cursor: pointer;
    margin: 1rem;
}

.donation-btn {
    background-color: darkgreen;
}

footer {
    text-align: center;
    padding: 2rem 1rem 1rem;
    font-size: 0.8rem;
}