@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;
}

.h1-development-process {
    color: red;
    text-align: center;
    font-family: 'PressStart2P';
}

.p-development-process {
    color: white;
    font-family: 'PressStart2P';
    text-align: justify;
}

.design {
    color: red;
    font-family: 'PressStart2P';
}

.design-text {
    color: white;
    font-family: 'PressStart2P';
    text-align: justify;
}

.ul-container-main {
    color: white;
    font-family: 'PressStart2P';
    text-align: justify;
}

.progress-container {
    font-family: 'PressStart2P', sans-serif;
    color: white;
    margin-top: 1em;
}

progress {
    width: 50%;
    height: 1.2em;
    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 5px #ff4444;
}

.programming {
    color: red;
    font-family: 'PressStart2P';
}

.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;
}