@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#logo_home img {
    width: 160px;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 5px;
    flex: 1;
    justify-content: right;
}

nav ul li a {
    background-color: transparent;
    text-decoration: none;
    color: #2B1100;
    font-weight: 500;
    padding: 10px 20px;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    border-radius: 5px;
    border: 3px solid #ffffff;
}

nav ul li a:hover {
    color: #f9f9f9;
    background-color: #2B1100;
    border: 3px solid #2B1100;
}

nav ul li.login_btn a {
    color: #f9f9f9;
    background-color: #2B1100;
    border-radius: 5px;
    border: 3px solid #2B1100;
}

nav ul li.login_btn a:hover {
    color: #2B1100;
    background-color: #f9f9f9;
    border: 3px solid #2B1100;
}


#language {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    cursor: pointer;
}
#selected_lang {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

#selected_lang img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

#lang_dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#language:hover #lang_dropdown {
    display: block;
}

#lang_dropdown div {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: background-color 0.3s;
}

#lang_dropdown div:hover {
    background-color: #e0e0e0;
}

#lang_dropdown div img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

section#welcome {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 100px 50px;
    background-color: #f9f9f9;
}

section#welcome h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2B1100;
    text-align: center;
}

section#welcome p {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2B1100;
    text-align: center;
    margin-top: 20px;
}

section#welcome a.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2B1100;
    color: #f9f9f9;
    text-decoration: none;
    border-radius: 5px;
    margin-top: none;
    transition: background-color 0.3s, color 0.3s;
    font-size: 1.2rem;
}

a {
    color: inherit;
}