* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  background-image: linear-gradient(180deg, #042747 0%, #0977B5 64.58%, #69C8FF 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  font-weight: 900;
  font-size: 92px;
  margin-top: -25px;
  margin-bottom: 1px;
  margin-left: -5px;
  color: #6DA150;
}

h3 {
  font-family: "Noto Serif", serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: #6DA150;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0.75em;
}

main {
  position: absolute;
  width: 800px;
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}

nav {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 100px;
}
nav a {
  display: block;
}
nav a img {
  width: 60px;
  height: 60px;
  margin-left: 20px;
}
nav ul {
  display: flex;
  justify-content: space-between;
  flex: 0 1 100%;
  list-style: none;
}
nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 1 210px;
  height: 34px;
  background-image: linear-gradient(0deg, #042747 0%, #0977B5 64.58%, #69C8FF 100%);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  overflow: hidden;
}
nav ul li a {
  text-decoration: none;
  color: #FFFFFF;
  white-space: nowrap;
  padding: 4px 66px;
}
nav ul li:hover a {
  text-decoration: underline;
}

article {
  display: flex;
  gap: 24px;
  padding: 0 20px 20px 20px;
}
article section {
  position: relative;
  flex: 1 1 50%;
}
article section:nth-child(1) > div {
  position: absolute;
  bottom: -20px;
  height: 100%;
  width: 100%;
  background: url(../img/ergome_app.png) no-repeat 0px 120px;
  transition: background-position-y 1s ease;
}
article section:nth-child(1) > div:hover {
  background-position-y: 0px;
}
article section:nth-child(2) > div a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 112px;
  margin-top: 10px;
  padding: 16px 16px 16px 112px;
  border-radius: 12px;
  background-color: #141315;
  background-size: 80px;
  background-repeat: no-repeat;
  background-position: 16px;
  transition: background-color 0.5s ease;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
}
article section:nth-child(2) > div a span {
  font-size: 20px;
  font-weight: 900;
  color: #FFFFFF;
}
article section:nth-child(2) > div a:hover {
  background-color: #27262a;
  -webkit-animation: spin 0.25s 0.1s ease;
          animation: spin 0.25s 0.1s ease;
}
article section:nth-child(2) > div a:nth-child(1) {
  background-image: url(../img/ios-btn.svg);
}
article section:nth-child(2) > div a:nth-child(2) {
  background-image: url(../img/google-btn.svg);
}

aside {
  position: absolute;
  right: -130px;
  bottom: 0;
  width: 110px;
  height: 180px;
  background: url(../img/maskot.svg) no-repeat;
}
aside div {
  text-align: center;
  position: absolute;
  top: -90px;
  padding: 1px 8px;
  height: 100px;
  background: url(../img/speech-bubble.svg) no-repeat;
}
aside div a {
  font-size: 14px;
  font-family: "Noto Serif", serif;
  color: #042747;
}
aside div a:hover {
  color: #0977B5;
}

footer {
  position: absolute;
  bottom: -40px;
  width: 100%;
  text-align: center;
}

@-webkit-keyframes spin {
  0% {
    background-position-y: 16px;
  }
  49% {
    background-position-y: 400%;
  }
  51% {
    background-position-y: -400%;
  }
  100% {
    background-position-y: 16px;
  }
}

@keyframes spin {
  0% {
    background-position-y: 16px;
  }
  49% {
    background-position-y: 400%;
  }
  51% {
    background-position-y: -400%;
  }
  100% {
    background-position-y: 16px;
  }
}/*# sourceMappingURL=style.css.map */