:root{
    --blue: #8caae3;
  --white: #faf0e6; 
  --pink: #a77598;
  --main_green:rgb(50, 73, 66);
  --dark_green:rgb(36, 51, 52);
  --alert_success:green;
  --alert_error:rgb(188, 64, 58);
  --input_err_bg:rgb(255, 200, 200);

  --scope01: "Scope One", serif;
  --DM:"DM Serif Text", serif;
  --bodoni:"Libre Bodoni", serif;
  --thin_serif:"Source Serif 4", serif;
    --radley:"Radley", serif;
    --ysa:"Ysabeau", sans-serif;
  --open_sans:"Open Sans", sans-serif;
  --monster:"Montserrat", sans-serif;
  --dancing:"Dancing Script", cursive;
  --chalk :"Fredericka the Great", serif;
  --condenced :"Encode Sans Condensed", sans-serif;
}
a{
    display: flex;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}
a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}
body {
        user-select: none; /* Standard syntax */
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* IE 10+ */
    }


.form_post_button{
  margin-top: 1.5rem;
  border: none;
  height: 3rem;
  width: 100%;
  font-family:var(--ysa);
  font-size: 20px;
  font-weight: 800;
  background-color:var(--main_green);
  border-radius: 5px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
a.form_post_button, a.form_post_button:hover, a.form_post_button:focus, a.form_post_button:active {
    text-decoration: none !important;
    color: white !important;
}



body{
    width: 100%;
    overflow-x: hidden;
    font-size: 50px;
    margin: 0px;
    
    
}



.standart_title_font{
    font-family: var(--ysa);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--dark_green);
    
}
.standart_sub_title_font{
    font-family: var(--ysa);
    font-size: 1rem;
    
}

.standart_button_colored{
    width: 10rem;
    height: 3.5rem;
    border: none;
    background-color: #684a31;
    border-radius: 5px;
    color: white;
    font-family: var(--ysa);
    font-weight: 900;
    font-size: 1.25rem;
    
}


.standart_button_wide_bordered{
   width: 100%;
    height: 3rem;
    color:var(--dark_green);
    border: 2px solid var(--dark_green);
    border-radius: 5px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--ysa);
    
    font-size: 1.25rem;
    

}

.loading_screen{
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    z-index: 2000;
}  
      
.loading_screen>img {
    height: 200px;
    width: 300px;
}


/* bottom delivery pick up section */
.mainpage_bottom_options{
    width: 100%;
    height: 5rem;
    position: fixed;
    bottom: 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #684a31;
    z-index: 102;
    
    
}
.mainpage_bottom_options>div{
    width: 2px;
    height: 1em;
    background-color: white;
}


.mainpage_bottom_options>button{
   background-color: transparent;
   border: none;
   color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
  
}



/* main page part */
.wrapper_main{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("../assets/background_img/white-triangle-pattern-seamless-background-5-cover.jpg");
    
    
}

.main_title{
    margin:  5rem 0 2rem 0;
    font-family: "Fascinate Inline", system-ui;
    text-align: center;
    font-size: 5rem;
    background-image: url("../assets/background_img/balloon_background.png");
    background-size: cover;

}





.hide_element{
    display: none;
}



.disableClick{
    pointer-events: none;
}




.back_to_home_link{
  
  /* background-color: thistle; */
  font-family: var(--ysa);
  display: flex;
  font-size: 20px; 
  font-weight: 800;
  margin-top: 30px;
  margin-left: 10px;
  
}
  
  
.back_to_home_link img{
 width: 25px;
  
}









/* .button_animation{
     content: " "; 
     transform: translateY(-10px);
    background-color: var(--pink);
    color: var(--white); 
    animation-name: bounce; 
    animation-duration: 3s ; 
    animation-timing-function: ease-out;
    animation-iteration-count: 3; 
}
.scale_animation{
    animation-name: scale;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
} */




/* .fadeIn{
    animation: fadeIn 0.2s;
    animation-fill-mode: forwards;
}
.fadeOut{
    animation: fadeOut 0.2s;
    animation-fill-mode: forwards;
}



@keyframes fadeIn {
    0% { opacity: 0; display: none;}
    50%{opacity: 0;}
    100% { opacity: 1; display: block;}
}
@keyframes fadeOut {
    0% { opacity: 1; display:block; }
    20%{opacity: 0;}
    100% { opacity: 0; display: none; }
} */
  


/* @keyframes bounce{
    20%,40%,60%,80%,98%{
        transform: translateY(-3px);
    }
    0%,22%,42%,62%,82%,100%{
        transform: translateY(0px);
    }
    
   
}

@keyframes scale {
    0% {
        transform: scale(1);
      }
      50% {
       transform: scale(0.9);
      }
      100% {
       transform: scale(1);
      }
}

@keyframes slideLeft {
    from{
        transform: translateX(-300px);
    }
    to{
        transform: translateX(0);
    }
} */



/* utility classes */
/* .slideLeft{
    padding-left: 400px;
    animation: slideLeft 2s ease-out; */
    
    /* animation-name: slideLeft; 
    animation-duration: 4s ; 
    animation-timing-function: ease-out; 
    animation-delay: 1s;
    animation-iteration-count: 1; 
    animation-direction: normal;
    animation-fill-mode: none; 
}*/




