@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;
}

.burger-icon {
    font-size: 1.6rem;
    cursor: pointer;
    color: white;
}

.logo-mobile {
    font-size: 1rem;
    margin: 0;
}

.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;
}

.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;
}

main h2,
main h3 {
    color: red;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.icon-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.icon-center img {
    width: 50px;
    height: auto;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #111;
    padding: 20px;
    border: 2px solid #00fff7;
    border-radius: 8px;
    max-width: 400px;
    margin: 0 auto;
}

.feedback-form label {
    color: #00fff7;
    font-size: 10px;
    text-align: left;
}

.feedback-form input,
.feedback-form textarea {
    background-color: black;
    border: 1px solid #00fff7;
    color: white;
    padding: 10px;
    font-family: 'PressStart2P';
    font-size: 10px;
    border-radius: 4px;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: #00ffcc;
    box-shadow: 0 0 5px #00ffcc;
}

.feedback-form button {
    background-color: #00fff7;
    color: black;
    padding: 10px;
    font-size: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'PressStart2P';
}

.feedback-form button:hover {
    background-color: #00ccff;
}

footer {
    text-align: center;
    padding: 2rem 1rem 1rem;
    font-size: 0.8rem;
}