body, html {
  height: 100%;
}

body {
  font-family: Muli, arial, sans-serif;
  background-color: white;
  color:#555;
}

/******************/
/* TOP MENU*/

.topnav {
/*  overflow: hidden;*/
  background-color: #ffffff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0px 2px 1px #555;
}

.topnav a {
  float: left;
  display: block;
  color: #555555;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: large;
}

.active {
  background-color: #FFFFFF;
  color: #00c8ff;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: visible;
}

.dropdown .dropbtn {
  font-size: large;    
  border: none;
  outline: none;
  color: #555555;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 100;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #00c8ff;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 650px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 650px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}


/******************/
/* GENERAL CONTENT*/

h1 {
    font-size: x-large; 
    color: #00c8ff;;
}

a:link {
color: #001EA0;
text-decoration: none;
}
a:visited {
#color: #aa00aa;
text-decoration: none;
}
a:hover {
#color: #3366CC; 
text-decoration: underline
}

button {
    background-color:#ffffff;
    color:#00c8ff;
    border: none;
    padding: 16px;
    font-size: x-large;
    font-weight:bold;
    border:solid 2pt #00c8ff;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

button:hover {
  background-color: #00c8ff; 
  color: #ffffff;
}

td.highlight {
    font-weight:bold;
    background-color: #eeeeee;
    padding: 50px;
    text-align:center;
}

/* Flexbox for the highlights */
.highlight-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.highlight-flex-container > div {
  background-color: #eeeeee;
  flex-basis: 250px;
  margin: 10px;
  text-align: center;
  font-weight:bold;
  padding: 20px;
}

/* Flexbox for the testimonials */

.flex-container {
  /* We first create a flex layout context */
  display: flex;
  flex-flow: row wrap;
  margin: 30px auto;
  padding: 10px; 
  min-height: 150px;  
  max-width: 500px;  
  box-shadow: 0 0 20px rgba(0,0,0,0.4); 
  align-items: stretch;
}
.flex-item {
}

/* Scrolling text with JS*/

#maindiv{
  overflow: hidden;
  white-space: nowrap;
}

#div1 {
  font-size: 2em;
  color: #f60080;
  display: inline-block;
  animation: marquee 80s linear infinite;
}

#div2 {
  font-size: 2em;
  color: #f60080;
  display: inline-block;
  animation: marquee2 80s linear infinite;
  animation-delay: 40s;
}

@keyframes marquee {
  from {
    transform: translateX(30%);
  }
  to {
    transform: translateX(-170%);
  }
}

@keyframes marquee2 {
  from {
    transform: translateX(-70%);
  }
  to {
    transform: translateX(-270%);
  }
}


 /* STYLE OF THE FOOTER */
footer {
   position: fixed;
   left: 0;
   bottom: 0;
   background-color: #eeeeee;
   text-align: center;
   width: 100%;
}


