/* MENU DROPDOWN */
.menu_dropdown{
    z-index: 200;
    
    height: 100vh;
    width: 0;/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
    background-color: white;
    

    position: fixed;
    top: 48px;
    left: 0em;
    
    overflow: auto;
    overscroll-behavior: contain;
    display: flex;
    justify-content: center;
    transition: all 0.3s;
    

}
.move_left{
    transform: translate(20px,0px);
}

.menu_dropdown_items_container>a{
    margin-top: 10px;
    opacity: 0;
}
.menu_expand{
    width: 85vw;
}
.menu_icon_fadeOut{
    opacity: 0;
}
.menu_icon_fadeIn{
    opacity: 1;
}
.dropdown_bg{
    
    height: 100vh !important;
    width: 0% !important;
    background-color: rgba(0, 0, 0, 0) !important;
    transition: background-color 0.5s, width 0s;
}


.dropdown_bg_expand{
    
    width: 100% !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
}



.menu_dropdown::-webkit-scrollbar {
    display: none;
}
.menu_dropdown_options_wrapper{
    opacity: 0;/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
    height: 110%;
    width: 80%;
    font-family: var(--ysa);
    
    font-size: 0.5em;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    /* background-color: aquamarine; */
    justify-content:baseline;
    
}
.options_wrapper_fadeIn{
    opacity: 1;
}
.welcome_wrapper{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--chalk);
    margin-top: 2rem;
    font-size: 2rem;
    color: rgb(72, 94, 72);
    
}
.welcome_wrapper>*{
   margin: 0;
}
.welcome_wrapper>h1{
    
    
    transform: rotate(-10deg);
   margin-top: -10px !important;
}
.welcome_wrapper>h3{
    
    color: rgb(32, 57, 43);
    font-size: 1.8rem;
    transform: rotate(-5deg);  
}

.light_text_button{
  height: 3rem;
  width: 100%;
  font-family:var(--ysa);
  font-size: 20px;
  font-weight: 800;
  background-color:var(--main_green);
  border-radius: 5px;
  border: none;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}








.login_buttons_wrapper{
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    
  
    
    

}
.login_buttons_wrapper>*{
   width: 45%;
}

.menu_dropdown_items_container{
   /* background-color: lightseagreen; */
   /* height: 30%; */
   margin-top: 30px;
   
}
.menu_dropdown_items_container>*{
    
    font-size: 1.2rem;
    color: rgb(36, 51, 52);
    height: 2rem;
    display: flex;
   
    align-items: center;
}






.divider_line{
    
    background-color: lightgrey;
    height: 1px;
    width: 100%;
    
}

#welcome_user_title{
    font-family: var(--dancing);
    font-size: 70px;
    text-align: center;
    font-weight: 900;
}