body {
  font-family: "Roboto Flex", "Manrope", sans-serif;
}

header {
  background-color: rgba(193, 227, 250, 0.5);
  width: 100vw;
  height: 72px;
  padding: 14px 60px;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}
header .scrolled {
  background-color: rgba(193, 227, 250, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
header .logo {
  height: 44px;
}
header nav {
  display: flex;
}
header nav .navbar {
  padding-right: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header nav #home-btn {
  background: url(images/home.svg) no-repeat center;
  width: 44px;
  height: 44px;
}
header nav .nav-btn, header nav .nav-btn:visited {
  margin: 0 12px;
  width: 88px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #969D9B;
  text-decoration: none;
}
header nav .nav-btn:hover {
  color: #969D9B;
  border-radius: 20px;
  background: #FFDBD6;
  filter: drop-shadow(0 2px 10px);
}
header #menu-btn {
  background: url(images/menu.svg) no-repeat center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: 0.3s ease-in;
}
header #menu-btn:hover {
  background: url(images/menuhover.svg) no-repeat center;
}

footer {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 60px;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem 0;
}
footer img {
  height: 44px;
  writing-mode: vertical-lr;
  padding-bottom: 1rem;
}
footer p {
  writing-mode: vertical-lr;
  font-size: 0.75rem;
  color: #969D9B;
}/*# sourceMappingURL=style.css.map */