@font-face {
    font-family: 'PressStart2P';
    src: url('../fonts/Press_Start_2P/PressStart2P-Regular.ttf');
}

body {
    background-color: black;
}

.h1-header {
    color: white;
    font-family: 'PressStart2P';
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
    margin-left: 20px;
}

.h1-header h1 {
    margin: 0;
    padding: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ul-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
    margin-left: 200px;
}

.li-content {
    font-family: 'PressStart2P';
    font-size: 14px;
    text-align: center;
    margin-right: 10px;
}

.li-content a {
    color: white;
    text-decoration: none;
}

.li-content a:hover {
    color: blue;
    transition: color 0.3s ease-in-out;
}

.nav-button {
    background-color: green;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'PressStart2P';
    margin-top: 20px;
    margin-left: 20px;
}

.nav-button:hover {
    background-color: darkgreen;
}

.contact {
    color: red;
    font-family: 'PressStart2P';
    text-align: center;
}

.icon-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.telegram-icon img {
    width: 60px;
    height: auto;
    margin-left: 20px;
    display: block;
}

.email-icon img {
    width: auto;
    height: 60px;
    display: block;
}

.email-icon {
    margin-left: 20px;
}

.github-icon img {
    width: auto;
    height: 60px;
    display: block;
}

.github-icon {
    margin-left: 20px;
}

.feedback-section {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #111;
    border: 2px solid #00fff7;
    font-family: 'PressStart2P';
    color: white;
}

.feedback-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: #00fff7;
}

.feedback-form label {
    display: block;
    margin-bottom: 30px;
    color: #00fff7;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 10px;
    background-color: black;
    border: 1px solid #00fff7;
    color: white;
    font-family: 'PressStart2P';
    font-size: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.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 20px;
    border: none;
    font-family: 'PressStart2P';
    font-size: 12px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.feedback-form button:hover {
    background-color: #00ccff;
}

.site-footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
    font-family: 'PressStart2P';
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    display: inline-block;
    margin: 10px;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: blue;
}

.footer-text {
    margin-top: 20px;
    font-size: 14px;
}

.language-switcher {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    margin-left: 20px;
    font-family: 'PressStart2P';
}

.lang {
    padding: 8px 16px;
    text-decoration: none;
    background-color: black;
    color: white;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.lang.active {
    background-color: white;
    color: black;
}