/* General styles used on all pages */

/* Font type */
@import url(https://fonts.googleapis.com/css?family=Lato:400,400italic,700|Sansita+One);


/* Whole elements have its size processed including margin and padding  */
* {
  box-sizing: border-box;
}

/* Accessibility buttons */

span.btndarklightmode {
  background: url(../_img/icons/darklight.svg) no-repeat center;    
  cursor: pointer;
  display: inline-block;
  height: 32px;
  width: 32px;  
}

span.btnfontsize {
background: url(../_img/icons/fontsize.svg) no-repeat center;  
cursor: pointer;
display: inline-block;
height: 32px;
width: 32px;
}

span.btntts {
background: url(../_img/icons/ear.svg) no-repeat center;  
cursor: pointer;
display: inline-block;
height: 32px;
width: 32px;
}

.accessibleButton{  
  background: #ffffff;
  border: none;  
  padding: 2px;
  margin: auto;
  border-radius: 5px;
  margin-left: 0.8vw;
}

.accessibleButton:hover {  
    background: #ffff00;
}

#accessibility {
  padding-top:1.5vw;
  padding-bottom:1.5vw;
  padding-left: 35%;
}

/* Centralize text */
.center {  
  text-align: center;
}

/* Title page formating */
.titlepage {
  text-decoration: none;  
  color: #ffffff;  
}

/* Top header formating */
.header {  
  background: #000000;
  z-index: 99;    
}

/* Fixing top header */
.content {
  padding: 16px;  
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 102px;
}

/* responsive columns */
.column {
  float: left;
  width: 33.33%;  
  margin: auto;
}

.row {
  margin: auto;    
}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }  
}

.row:after {
  content: "";
  display: table;
  clear: both;  
}

li {
  text-align: center;
}

/* Footer settings */

  footer {  
    position: fixed;
  left: 0;
  bottom: 0;
  height: 30px;  
  width: 100%;  
   }

   footer h6 {
     text-align: center;
     padding: 10px;     
   }

   /* Mebu item fomating */
   .menuitem {
    text-decoration: none;
    font-weight:bold;
  }  

  .menustyle {
    border: 1px;
    border-style: solid;
    border-color: white;
    border-radius: 20px;
    width: 120px;
    padding: 5px;
    margin: 5px auto 5px auto;
  }