*{
    margin: 0;
    bottom: 0;
    box-sizing: border-box;
}

body {
    background-image: url("../pics/bg-pics/1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
}

.middle-grade{
    text-align: center;
}

.language-switcher{
    color: antiquewhite;
    position: fixed;
    top: 15px;
    right: 15px;
    font-size: 14px;
}

.languages{
    color: antiquewhite;
}

.Title-name-1{
    display: block;
    color:  #d4af7a;
    font-size: clamp(2rem, 6vw, 5rem);
    text-align: center;
    align-content: center;
    justify-content: center;
    margin-top: 10%;
}
.Title-name-2{
    display: block;
    color:  #d4af7a;
    font-size: clamp(2rem, 6vw, 5rem);
    text-align: center;
    align-content: center;
    justify-content: center;
}

.Contact-Info{
    color: #ffffff;
    text-align: left;
    font-size: clamp(1rem, 3vw, 2rem);
    display: inline-block;
    margin-top: 40px;
    padding: 0 20px;
}

.Title-Contact{
    color: #d4af7a
}

.choices{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.choices li{
    margin: 5px 0;
}

.fb-link {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.fb-link:hover {
    color: #d4af7a;
    text-decoration: underline;
}

@media (max-width: 600px) {

    .m-context{
        transform: translateY(-50%);
    }

    .language-switcher {
        font-size: 12px;
    }

    .Title-name-1,
    .Title-name-2 {
        line-height: 1.1;
    }

    .Contact-Info {
        margin-top: 20px;
    }
}