html,
body {
  width: 100vw;
  height: 100vh;
}

body {
  display: flex;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}

a,
.font-weight-bold {
  font-weight: 500 !important;
}

.background {
  max-width: 1500px;
  width: 100%;
  height: 100%;
  background: url("img/background.png?v=1");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

a,
footer {
  color: #8c8c8c;
}

a {
  font-weight: bold;
}

img.logo {
  max-width: 100px;
}

div.address p {
  margin: 0;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gap-big {
  gap: 8px;
}

.social-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}
.social-icon.mail {
  background-image: url("img/mail.svg?v=1");
}
.social-icon.instagram {
  background-image: url("img/instagram.svg?v=1");
}
.social-icon.web {
  background-image: url("img/web.svg?v=1");
}

section.copyright {
  font-size: 12px;
}

.eu-logo {
  height: 46px;
  margin-top: 3px;
}

.modal-eu-logo,
.modal-npo-logo {
  height: 80px;
}

.modal-window {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.1s;
}

.modal-window__backdrop {
  position: absolute;
  inset: 0;
}

.modal-window__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 16px 16px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.modal-window__close-button {
  font-size: 28px;
}
.modal-window__close-button:hover {
  text-decoration: none;
}

#modal-eu:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.modal-eu {
  width: 85vw;
  max-width: 700px;
}
.modal-eu__open-button:hover {
  filter: grayscale(1);
}

@media only screen and (min-width: 768px) {
  .modal-window__content {
    padding: 16px 32px;
  }

  .modal-eu-logo,
  .modal-npo-logo {
    height: 100px;
  }
}
