body {
    background: url("../assets/images/wallpaper.webp") no-repeat center center fixed;
    background: darkgrey;
    font-family: 'Courier New', monospace;
    margin-top: 120px;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../assets/images/wallpaper.gif") no-repeat center 100% fixed;
    background-size: cover;
    opacity: 0.6;
    z-index: -1;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 160px;
    margin-bottom: 100px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 0 40px;
}

.concept-container {
    display: flex;
    position: absolute;
    flex-direction: row;
    gap: 100px;
    z-index: 1;
    opacity: 0.8;
    top: -90px;
}

.concept {
    height: 100px;
    transition: ease-in 0.2s;
}

.concept:hover {
    transform: scale(1.2);
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.menu-item, .contact, .download{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    padding: 10px;

    font-family: "Handjet", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 1.5px;
    font-size: 15px;
    cursor: pointer;
}

.menu-item img, .contact img, .download img, .kofi img {
    height: 60px;
    transition: transform 0.2s;
    margin-bottom: 10px;
}

.menu-item img:hover, .contact img:hover {
    transform: scale(1.20);
}

.item-home {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    text-decoration: none;
    align-items: center;

    font-family: "Handjet", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 1.5px;

    position: fixed;
    top: 10px;
    font-size: 12px;
    color: white;
    z-index: 5;
    cursor: pointer;
}

.item-home img {
    width: 40px;
    transition: transform 0.2s;
    margin-bottom: 0;
}

.contact-container {
    display: flex;
    width: 100%;
    justify-content: right;
    margin-top: -100px;
}

.download-container {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 20px;
    left: 40px;
    z-index: 9999;
}

.downloads {
    display: flex;
    flex-direction: row;
    position: fixed;
    left: 30px;
    z-index: 9999;
    margin-top: 10px;
}

.download img {
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: border 0.3s ease;
}

.download img:hover {
    border: 3px solid whitesmoke;
}

.download-info {
    font-family: "Handjet", sans-serif;
    letter-spacing: 1.5px;
    user-select: none;
}

#social1 {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 12px;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    z-index: 5;
    cursor: pointer;
    text-align: center;
}

#social2 {
    position: fixed;
    top: 10px;
    right: 100px;
    font-size: 12px;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    z-index: 5;
    cursor: pointer;
    text-align: center;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    user-select: none;
}

@media (max-width: 1000px) {
    .container {
        padding-right: 150px;
        padding-left: 150px;
    }

    .menu-item, .contact, .download {
        font-size: 30px;
    }

    .menu-item img, .contact img, .download img {
        width: 100px;
    }

    #langBar {
        font-size: 16px;
        padding: 6px 10px;
        top: 10px;
        right: 10px;
        gap: 6px;
    }
}