* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Inter";
  color: #000428;
}

.inter-400 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.share-tech-regular {
  font-family: "Share Tech", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pacifico-regular {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

.tagesschrift-regular {
  font-family: "Tagesschrift", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.website {
  font-size: 2rem;
  color: black;
  display: flex;
  align-items: center;
}

.website > span {
  margin-left: 0.5rem;
}

.expand {
  flex-grow: 1;
}

.nav-items {
  display: flex;
  align-items: center;
  justify-items: center;
  margin-right: 2rem;
  color: /*rgb(101, 167, 3);*/ #ae0671;
}
.nav {
  padding: 0.5rem;

  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  cursor: pointer;
  color: /*rgb(101, 167, 3);*/ #ae0671;
}
.nav:hover {
  color: #004e92;
  background: white;
  color: rgb(101, 167, 3);
}
.nav > div {
  margin-left: 0.25rem;
  color: /*rgb(101, 167, 3);*/ #ae0671;
}
.icon-26 {
  width: 26px;
  height: 26px;
}

header {
  padding: 2rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
  position: fixed;
  display: flex;
  background: white;
}

header > div {
  display: flex;
  flex-grow: 1;
}

main {
  margin-top: 7rem;
}

.desc {
  text-align: center;
  font-size: 3rem;
  padding: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 5rem 1rem;
  margin-top: 2rem;
  font-family: "Tagesschrift", system-ui;
  background: #000428;
  color: white;
}

.app-desc {
  padding: 1rem;
  background: whitesmoke;
  margin: 1rem;
}

.download-text {
  font-size: 1.15rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin: 1rem 0px;
}

.download-text > span {
  margin-left: 0.5rem;
}

.app-short {
  font-size: 1.25rem;
  margin: 2rem 0px;
  line-height: 2rem;
}

.icon-24 {
  width: 24px;
  height: 24px;
  background: rgb(218, 217, 217);
}

.app-download {
  color: black;
  text-decoration: none;
  padding: 1rem;
  /* background-color: rgb(193, 242, 120);*/
  background: linear-gradient(to right, #ae0671, #f83340);
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0.1rem 0.1rem 0.5rem lightgray;
  color: white;
}

.app-download:hover {
  background-color: rgb(184, 236, 106);
  transition: all 0.5s ease;
  transform: scale(1.05);
}

footer {
  margin: 1rem;
  font-size: 1.1rem;

  padding: 1rem;
  margin-bottom: 4rem;
}

.footer-title {
  font-size: 1.5rem;
  padding: 1rem 0px;
}

a {
  text-decoration: none;
}

footer a {
  display: flex;
  align-items: center;
  margin: 1rem 0px;
}
footer a > span {
  margin-left: 0.25rem;
}

.contacts > div {
  width: fit-content;
}

#developer {
  padding: 1rem;
  margin: 1rem;
  margin-top: 2rem;
  background: whitesmoke;
  color: #000428;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 1024px;
  max-width: 100%;
  line-height: 1.5rem;
}

.developer-pic {
  box-shadow: 0.1rem 0.1rem 0.1rem purple;
  width: 128px;
  height: 128px;
  border-radius: 1000px;
  background-image: url(../img/developer.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.dev-desc {
  padding: 1rem;
  font-size: 1.25rem;
}

.dev-container {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  left: 0px;
  top: 0rem;
  bottom: 0px;
  right: 0px;
  background: hsl(208, 100%, 29%, 0.6);
}

.close {
  padding: 1rem 2rem;
  /*background: rgb(101, 167, 3);*/
  background: linear-gradient(to right, #ae0671, #f83340);
  color: whitesmoke;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  margin-top: 0rem;
}

.hide {
  display: none;
}

@media screen and (max-width: 700px) {
  header > div {
    align-items: center;
    flex-direction: column;
  }

  header {
    padding: 1rem;
  }

  .nav-items {
    margin-top: 0.25rem;
  }
}

header,
main,
footer {
  width: 1024px;
  max-width: 100%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.5);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.box1 {
  animation: fadeUp 1s linear;
  animation-timeline: view();
  animation-range: entry 0% cover 20%;
}
