@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');


body {
    font-family: "Poppins", sans-serif;
    background-color: #FAD1E2;
}

.body-cont {
    width: calc(100% - 250px);
    margin-left: 250px;
}

.navbar a {
   text-decoration: none;
   color:  #FAD1E2;
   font-weight: 400;
}
.navbar {
    top: 0;
    left: 0;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    width: 250px;
    height: 100%;
    position: fixed;
    background-color: #F76AA7;
   
}

.navbar_container {
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    height: 100%;
    width: 250px;
}

.navbar_up {
    border-bottom: 1px solid #FAD1E2;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.navbar_mid {
    gap: 20px;
    padding: 0 15px;
    height: 80px;
}

.navbar_down {
    text-align: center;
    padding-bottom: 30px;
}

.button_items { 
    font-size: 20px;
    display:flex;
    justify-content: baseline;
}

.button_items p {
    font-size: 20px;
    display: flex;
    justify-content: baseline;
}

.navbar_button .button_items {
    transition: 200ms;
}

.navbar_button:hover .button_items{
    color: #fccadf;
    background-color:#f9b8d34a;
    border-radius: 5px;
    transition: 200ms;
}

.navbar_logo {
    padding-top: 5px;
    display: flex;
    justify-content:baseline;
    font-size: 30px;
}

.navbar_logo p {
    font-size: 30px;
    padding-top: 5px;
    display: flex;
    justify-content:baseline;
}

#navbar_logo { 
    width: 40px;
    height: 40px;
    border-radius: 50px;
    margin: 32px 10px 0 10px;
}

.navbar_lang {
    border: 1px solid #FAD1E2;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 20px;
    background-color:#fad1e211;
    transition: 200ms;
}

.navbar_lang:hover {
    background-color: #FAD1E2;
    color: #f74994;
    transition: 200ms;
}

.material-icons {
    font-size: 20px;
    margin-top: 25px;
    margin-right: 10px;
}
