*{
  margin: 0;
  padding: 0;
  border: 0;
}

body{
  background-color: #63965e;
  background-image: url("../images/bckgnd5.jpg");
  background-repeat: no-repeat;
  background-size: auto 230px;
}

#page{ 
  width: 96%;
  margin: 0 auto;
}

#banner_container{
  display: flex;
  width: 100%;
  height: 230px;
}

#logo_box{
  display: flex;
  height: 150px;
  margin: 40px 20px;
}

img#logo{
  height: 100%;
}

.rotate {
    animation: rotation 3s linear;
    animation-delay: 3s;
}

@keyframes rotation {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(359deg);
    }
}

#title_box{
  display: flex;
  height: 70px;
  background-color: #eae4c4;
  align-items: center;
  margin:  0 auto;
  padding: 0 40px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

#title{
  font-family: arial,helvetica,sans-serif;
  font-style: italic;
  font-variant: small-caps;
  font-size: 36px;
  color: #694747;
}

#main_container{
  display: inline-block;
  width: 100%;
  margin-bottom: 56px;
}

#navi_panel{
  display: flex;
  position: sticky;
  top: 0;
  z-index: 50;
  height: auto;
  min-height: 60px;
  width: 100%;
  margin: 0 auto;
  padding: 2% 0;
  align-items: center;
  background-color: #63965e;
}

#lang_sw_box{
  display: flex;
  height: 100%;
  float: left;
}

img#lang_sw{
  width: 60px;
  height: 60px;
}

img#lang_sw a:focus, a:active{
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

#menu_btn_box{
  display: none;
}

img#menu_btn{
  display: none;
}

#menu_box{
  display: flex;
  height: 100%;
  width: auto;
  align-items: center;
  margin: 0 auto;
}

input{
  display: none;
}

#menu_box ul{
  text-align: center;
}

#menu_box ul li{
  display: inline-flex;
  list-style: none;
  font-family: arial, helvetica, sans-serif;
  font-size: 18px;
  line-height: 40px;
  margin: 0 auto;
}

#menu_box ul li a{
  display: block;
  color: #eae4c4;
  text-decoration: none;
  padding: 0 15px;
}

#menu_box ul li a:hover{
  color:  #000000;
  background: #eae4c4;
  border-radius: 20px;
}

#menu_box ul li button{
  width: 100%;
  color: #eae4c4;
  text-decoration: none;
  font-family: arial, helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  background: none;
}

#menu_box ul li button:hover{
  color: #000000;
  background: #eae4c4;
  border-radius: 20px;
}

.active{
  border: dotted 2px #eae4c4;
  border-radius: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 2000;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.contact_window {
  position: relative;
  background-color: #eae4c4;
  width: 60%;
  height: auto;
  margin: 30% auto;
  padding: 1% 0;
  border-radius: 20px;
  transition: all 5s ease-in-out;
  z-index: 2010;
}

.contact_window a{
  text-decoration: none;
  color: #000000;
}

.contact_window .close {
  position: absolute;
  top: 10px;
  right: 20px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #000000;
}

.contact_window .content {
  font-family: arial, helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 10% 0;
}

#main_panel{
  display: inline-block;
  width: 98%;
  height: auto;
  margin: 0 1%;
}

.link_panel{
  display: inline-block;
  background-color: #eae4c4;
  width: 100%;
  font-family: arial, helvetica, sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 35px;
  text-align: center;
  border-radius: 20px;
  margin: 0 0 3%;
  padding-bottom: 1%;
}

.link_panel a{
  text-decoration: none;
  color: #000000;
}

.datablock{
  width: 100%;
}

.dataframe{
  display: inline-block;
  width: 70%;
  min-width: 400px;
}

.category{
  font-family: arial, helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 35px;
  padding: 10px 0;
  margin-bottom: 1%;
  border-bottom: dotted 2px black;
}

#copy_container{
  display: flex;
  position: fixed;
  left: 0;
  bottom: 0;
  height: 40px;
  width: 100vw;
  background-color: #eae4c4;
  align-items: center;
  z-index: 1300;
}

#copy_text{
  font-family: arial,helvetica,sans-serif;
  font-size: 14px;
  color: #694747;
  margin: 0 auto;
}