@import url('https://fonts.googleapis.com/css2?family=Abel&family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Lobster&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.marquee {
  background-color: #ddd;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  }
  .marquee span {
  /* display: inline-block; */
  font-size: 20px;
  position: relative;
  left: 100%;
  /* animation: marquee 8s linear infinite; */
  font-family: 'Abel', sans-serif;
  }
  .marquee:hover span {
  /* animation-play-state: paused; */
}

.mmm {
  background-color: orange;
  margin: 0;
  padding: 2px;
  font-weight: bold;
}

.marquee span:nth-child(1) {
  animation-delay: Os;
  }
  .marquee span:nth-child(2) {
  animation-delay: 0.8s;
  }
  .marquee span:nth-child(3) {
  animation-delay: 1.6s;
  }
  .marquee span:nth-child(4) {
  animation-delay: 2.4s;
  }
  .marquee span:nth-child(5) {
  animation-delay: 3.2s;
  }
  @keyframes marquee {
  0% { left: 110%; }
  100% { left: -50%; }
  }

.burger {
  display: none;
}

body {
  overflow-x: hidden;
  font-family: Sans-Serif;
  margin: 0;
  max-width: 100%;
}

.topnav {
  position: relative;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  font-family: 'Lobster', cursive;
  height: 100px;
  margin-top: none;
  padding-top: none;
}

.topnav a {
  float: left;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  /* color: rgba(15, 35, 59, 0.55); */
  transition: all .25s ease-in-out;
  /* padding: 2px 2px 0 2px; */
  margin-left: 2px;
}

.topnav a.orange {
  border-bottom: 1px solid #ff5e00;
  box-shadow: inset 0 -7px 0 #ff5e00;
  margin-top: 15px;
}

.topnav a.orange:hover {
  background-color: #ff5e00;
}

.topnav a.orange.active {
  background-color: #04AA6D;
  color: white;
}

.topnav a.red {
  border-bottom: 1px solid #ff0000;
  box-shadow: inset 0 -7px 0 #ff0000;
}

.topnav a.red:hover {
  background-color: #ff0000;
}

.topnav a.red.active {
  background-color: #04AA6D;
  color: white;
}

.topnav a.yellow {
  border-bottom: 1px solid #fbff00;
  box-shadow: inset 0 -7px 0 #fbff00;
}

.topnav a.yellow:hover {
  background-color: #fbff00;
}

.topnav a.yellow.active {
  background-color: #04AA6D;
  color: white;
}

.topnav-centered a {
  float: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: none;
  margin-top: 0;
}

.topnav-centered button {
  float: right;
  position: absolute;
  top: 60px;
  left: 75%;
  transform: translate(-50%, -50%);
  box-shadow: none;
}

.topnav-centered a img {
  width: 6vw;
}

.topnav-right {
  float: right;
}

.burger {
  border: none;
  background-color: transparent;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

@media screen and (max-width: 900px) { 
  .topnav-centered a img {
    width: 10vw;
  }
}


/* Responsive navigation menu (for mobile devices) */
@media screen and (max-width: 600px) {

  .burger {
    display: block;
  }

  .topnav {
    height: min-content;
  }

  .topnav a, .topnav-right {
    float: none;
    display: block;
  }

  .topnav a {
    padding-left: 25%;
    padding-right: 25%;
  }

  .topnav a.orange {
    margin-top: 0px;
    display: none;
  }
  
  .topnav-centered a {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }

  .topnav-centered a img {
    width: 20vw;
  }
}

@media screen and (max-width: 350px) {
  .topnav-centered a img {
    width: 40vw;
  }
}