:root{
    --frost-white:#F0F5F9;
    --frost-lgray:#C9D6DF;
    --frost-gray:#52616B;
    --frost-black:#1E2022;
}
html {
  scroll-behavior: smooth;
}
@font-face {
    font-family: "FrostDm";
    src: url(../fonts/DMSerifText-Regular.ttf);
}
@font-face {
    font-family: "FrostOutfit";
    src: url(../fonts/Outfit-VariableFont_wght.ttf);
}
@font-face {
    font-family:"FrostSansation" ;
    src: url(../fonts/Sansation-Regular.ttf);
}
*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.8s;
}
body{
    background-image: url(../img/BgFrost.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
a{
    text-decoration: none;
    list-style: none;
    color: var(--frost-black);
}
.Header{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;

}
.hlinks{
    width: 550px;
    height: 100%;    
    display: flex;
    justify-content: space-around;
    line-height: 50px;
    padding-left: 0;
    border: solid 2px var(--frost-gray);
    border-radius: 15px;
    backdrop-filter: blur(3px);
}
.hlinks li a{
    font-family: "FrostOutfit";
    transition: all 0.2s;
}
.link a:hover{
    color: var(--frost-gray);
    font-size: 20px;
    transition: all 0.2s;
}
.main-content{
    width: 1000px;
    height: 600px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: solid 2px var(--frost-gray);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}
.main-content h1{
    font-family: "frostdm";
    font-size: 40px;
    color: var(--frost-black);
}
.main-content h3{
    font-family: "frostdm";
    font-size: 40px;
    color: var(--frost-black);
}
.main-content p{
    font-family: "frostoutfit";
    font-size: 25px;
    color: var(--frost-black);
    text-align: center;
}
footer{
    width: 100%;
    height: 200px;
    border-top: solid 2px var(--frost-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
}
footer p{
    color:  var(--frost-lgray);
    font-size: 20px;
}
.language-switcher {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
}

.lang-btn {
    display: inline-block;
    padding: 6px 12px;
    margin-left: 5px;
    background-color: #1e1e1e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.lang-btn:hover {
    background-color: #007bff;
}
.active {
    background-color: green !important;
}
