@media screen and (max-width: 576px) {
  #cookieBanner {
    width: 90%;
    padding: 5% 6%;
  }

  #accept_cookies {
    padding: 3px 30px;
    margin: 0 10px;
  }

  #reject_cookies {
    padding: 3px 30px;
  }
}

@media screen and (min-width: 576px) {
  #cookieBanner {
    width: 35%;
    padding: 2% 3%;
  }

  #accept_cookies {
    padding: 5px 50px;
    margin: 0 30px;
  }

  #reject_cookies {
    padding: 5px 50px;
  }
}

#cookieBanner {
  position: fixed;
  box-shadow: 50px 50px 500px rgba(0,0,0,0.3);
  z-index: 999;
  border-radius: 10px;
  background:white;
  border: 1px solid transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#accept_cookies {
  color: white;
  font-weight: bold;
  background-color: #367f85;
  border: 1px solid transparent;
  border-radius: 5px;
}

#reject_cookies {
  color: #367f85;
  font-weight: bold;
  background-color: white;
  border: 1px solid #367f85;
  border-radius: 5px;
}

html {
  height: 100%;
}

body {
  font-family: "Bentham", serif !important;
  
}

#navLogo {
  width: 300px;
  margin: 30px 30px;
}

#lineLogo {
  margin: 0 0;
  opacity: 0.3;
}

#lineNav {
  margin-top: 0px;
  margin-bottom: 50px;
  opacity: 0.3;
}

.nav-link {
  margin-left: 30px;
  margin-right: 30px;
}

#footerArea {
  background-color: #1d4346;
  margin-top: 40px;
}

#footerAreaLogo {
  width: 400px;
}

.footerSocialIcon {
  width: 27px;
  padding: 3px;
  margin-right: 15px;
}

.footerSocialIcon:hover {
  border: 1px solid white;
}

.footerItem {
  color: white;
  font-size: 18px;
  text-decoration: none;
}