body {
  margin: 0px;
  overflow-x: hidden;
}

main {
  background: #fff;
}

#header-navbar {
  font-family: "Roboto";
  position: sticky;
  top: 0;
  transition: top 0.3s;
  z-index: 50;
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
}

#header-navbar-background {
  background: #fff;
  opacity: 0.9;
  width: 100%;
  height: 100%;
}

#header-navbar-content {
  z-index: 60;
}

#header-navbar li {
  display: flex;
  align-items: center;
}

#header-navbar li:last-child::after {
  content: none;
}

#header-navbar li > a {
  color: #000;
  font-size: 20px;
  margin-left: 20px;
}

#header-navbar li > a:hover {
  color: #9b002c;
}

header {
  z-index: 0;
}

#main-picture-container {
  height: 50vh;
  width: auto;
  z-index: -10;
  overflow-x: clip;
}

#main-picture {
  height: 100%;
}

#logo-picture-container {
  width: min-content;
  left: 0;
  right: 0;
  margin: auto;
  align-self: center;
}

#logo-picture-container > img {
  width: 40vw;
  height: auto;
}

main {
  position: relative;
  z-index: 5;
}

footer {
  position: sticky;
  bottom: 0px;
  z-index: -5;
  background: #2d2d2d;
}

#footer-picture {
  width: 90vw;
  height: auto;
}

#footer-container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

#footer-container > address {
  margin: 0px;
}

#footer-container ul {
  list-style: none;
  color: #fff;
  font-size: 16px;
  width: fit-content;
  text-align: center;
  margin-top: 20px;
}

#footer-company-name {
  font-weight: bold;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #f1f1f1;
}

.footer-links a {
  color: #007bff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

footer p {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  font-size: 16px;
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
  #footer-picture {
    width: 80vw;
  }

  #footer-container ul {
    font-size: 20px;
  }

  footer p {
    font-size: 18px;
  }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  #footer-picture {
    width: 60vw;
  }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  #main-picture-container {
    height: 100vh;
  }

  #main-picture {
    height: auto;
    width: auto;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
  }

  #logo-picture-container > img {
    width: 21vw;
  }

  #header-navbar {
    height: 50px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  #header-navbar li::after {
    content: "\00B7";
    transform: scale(5);
    line-height: initial;
    margin: 0px 20px;
    color: #b20030;
  }

  #header-navbar li > a {
    font-size: 10px;
  }

  #footer-container {
    width: 100%;
    flex-direction: row;
  }

  #footer-container ul {
    margin-top: 0px;
  }

  #footer-container > address {
    width: 40%;
  }

  footer ul > li {
    font-size: 15px;
  }

  footer p {
    font-size: 11px;
  }

  #footer-picture {
    width: 250px;
  }
}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
  #header-navbar {
    height: 68px;
  }

  #header-navbar li > a {
    font-size: 15px;
  }
}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
  #header-navbar {
    height: 80px;
  }

  #header-navbar li > a {
    font-size: 19px;
  }

  footer ul > li {
    font-size: 19px;
  }

  footer p {
    font-size: 14px;
  }

  #footer-picture {
    width: 300px;
  }
}

/* XXX-Large devices*/
@media (min-width: 1620px) {
  #header-navbar {
    height: 90px;
  }

  #header-navbar li > a {
    font-size: 24px;
  }

  footer ul > li {
    font-size: 24px;
  }

  footer p {
    font-size: 16px;
  }

  #footer-picture {
    width: 400px;
  }
}
