:root {
  --background: #c5e2ce;
  --bodybackground: #ecf5ef;
  --lettersbackground: #061009;
  --hover: 	#9fcfae;
  --active: #0c2013;
  --lettersactive: #ecf5ef;
  --button:#194025;
  font-size: 10px;

 }




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1rem;
  min-height: -webkit-fill-available;
  max-height: 1200px;
  max-width: 2000px;
  margin: auto;

  background-color: var(--bodybackground);
 
}

.topBar {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  justify-content: center;
  
  align-content: center;
  height: 4rem;
  width: 100%;
  background-color:  var(--background);
  /* padding-left: 40px;
  padding-right: 50px; */
}

.iconMenu{
  height: 4rem;
  display: none;
}

.menuMobile{
  height: 100%;
}

.menuBotton {
  text-decoration: none;
  background-color: transparent;
  color: var(--lettersbackground);
  border: none;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.6rem;
  padding: 1.1rem 2rem;
  text-align: center;
  

}

.menuBotton:hover,
.menuBotton:after {
  text-decoration: none;
  
  background-color: var(--hover);
  
  
}

.active{
  background-color: var(--active);
  color: var(--lettersactive);
  text-decoration: none;
  border: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 1.1rem 2rem;
  text-align: center;

  



}


footer {
  display: flex;
 
 
  background-color:  var(--background);
  width: 100%;
  height: 30px;
  text-align: center;
  color: var(--lettersbackground);

 justify-content: space-around;
  align-items: center;
}


.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin: 1rem 0;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}


.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.invalid .errorlist {
  display: block;
  color: red;
  font-size: 0.8rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  text-align: center;
}
.accept-button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


@media (max-width:500px){
  :root{
    font-size: 8px;
  }

.topBar{

  display: flex;
  flex-direction: column;
  height: 100%;


}

  .iconMenu{
    float: right;
    display: block;
  }


  .menuBotton{
display: none;

  }

  .active{
    display: none;
  }

 .responsive .menuBotton{
  display: block;
 } 

 .responsive .active{
  display: block;
 }
   }