html, body {
  color: white;
  font-family: Verdana;
  margin: 0;
  padding: 0;
  height: 100%;
  min-width: 1280px;
  min-height: 620px;
  overflow: auto;
}

.hidden {
  display: none;
}

.anchor-as-button {
  color: inherit;
  box-sizing: border-box;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.button-as-anchor {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
}

.image-button {
  display: inline-flex;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.image-button.disabled {
  cursor: default;
  pointer-events: none;
}

.image-button.disabled img {
  background-color: lightgray;
}

.wrapper {
  background: url("/mon/images/BG.jpg") center/cover no-repeat;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid white;
}

.eumetnet-logo {
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.header-buttons {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.header-button {
  background-color: white;
  padding: 5px;
  border-radius: 5px;
}

.dwd-logo {
  margin-left: 30px;
  margin-right: 20px;
}

.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: red;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  overflow: auto;
}

nav {
  flex: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.main-button {
  width: 20%;
  height: 145px;
  border-width: 2px;
  border: white;
  border-style: solid;
  background: #006d6f;
  font-size: 18px;
}

aside {
  background-color: white;
  color: black;
  font-size: small;
  padding: 10px;
  flex: 1;
  min-height: 0;
  overflow: auto;
}

footer {
  background-color: #01282d;
  height: min(10%, 96px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-button {
  margin: 10px;
  font-size: 13px;
}

.footer-button.disabled {
  cursor: default;
  color: lightgray;
  pointer-events: none;
}