body {
    background-size: 100%;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h2 {
    font-family: "Covered By Your Grace", cursive;
    font-size: 500%;
    line-height: 1;
    word-spacing: 2px;
    cursor: default;
    margin-top: 70px;
    color: white;
    text-shadow: black 1px 1px 10px;
}

h1 {
    font-family: "Covered By Your Grace", cursive;
    font-size: 250px;
    color: #770a0a;
    margin-top: -80px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-shadow: #cccccc 1px 1px 30px;
}

h1:hover {
    transform: scale(1.1);
}

body {
    background: url("../assets/images/wallpaper.webp") no-repeat center center fixed;
    background-size: 100%;
    font-family: 'Courier New', monospace;
}

#langBar {
    position: fixed;
    top: 10px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 8px 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    font-family: 'Handjet', sans-serif;
    letter-spacing: 1.2px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.langBtn {
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.25s ease;
    user-select: none;
    color: #fff;
}

.langBtn:hover,
.langBtn.selected {
    background-color: rgba(255, 255, 255, 0.3);
    color: #000;
    transform: scale(1.1);
}

@media only screen and (max-width: 1250px) {
    body {
        background: url("../assets/images/startpage_mv.webp") no-repeat center center fixed;
        background-size: 110%;
    }

    h1 {
        font-family: "Covered By Your Grace", cursive;
        font-size: 250px;
        color: #770a0a;
        margin-top: -80px;
        cursor: pointer;
        transition: transform 0.3s ease;
        text-shadow: #cccccc 1px 1px 30px;
    }

    h2 {
        font-size: 60px;
    }
}