html {
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
}

body,
h1,
h5 {
  font-family: "Manjari", sans-serif;
}

.bgimg {
  background: linear-gradient(black, black), url("img/autumn1.jpg");
  min-height: 100%;
  background-position: center;
  background-size: cover;
  background-blend-mode: saturation;
}

#logo_img {
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px;
  width: 70%;
}

#logo_title {
  /*display: block;*/
  /*margin-left: auto;*/
  /*margin-right: auto;*/
  margin-top: 0px;
  padding-top: 0px;
  border-top: 0px;
  text-align: center;
  font-family: "Merienda One", sans-serif;
}

.button {
  /*border-radius: 4px;*/
  border: none;
  text-align: center;
  padding: 20px;
  width: 120px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

#menu_button span:after {
  content: "\25BE";
}

#contact_button span:after {
  content: "\25A0";
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

#imgTag {
  -webkit-animation: fading 0.5s; /* Safari 4+ */
  -moz-animation: fading 0.5s; /* Fx 5+ */
  -o-animation: fading 0.5s; /* Opera 12+ */
  animation: fading 0.5s; /* IE 10+, Fx 29+ */
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 100%;
}

td {
  padding: 0 10px 0 10px;
}

.red_color {
  color: rgb(147, 0, 0);
}

#infoBodyDiv {
  max-height: 75vh;
  overflow-y: auto;
}

.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active,
.collapsible:hover {
  background-color: #555;
}

.collapsible::after {
  content: "\002B";
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active::after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}

.imgMenu {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 100%;
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes fading {
  0% {
    opacity: 0;
  }
  /*50%  { opacity: 0.5;}*/
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.25;
  }
}
