body {
  margin: 0;

  font-family: "Open Sans", sans-serif;

  background: linear-gradient(180deg, rgb(227, 255, 248, 0) 82.08%, rgb(227, 255, 248, 0.38) 100%);

  min-height: 100vh;
}

.page {
  width: 1000px;
  margin: 0 auto;
  padding-top: 65px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 55px;
  /* border-bottom: 1px solid #1f1534; */
}

ul {
  display: flex;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: #1f1534;
  text-decoration: none;
}

ul a {
    /* font-size: 16px; */
    opacity: 0.5;
    font-weight: bold;
    border-bottom: 0px solid #69B99D;
    transition: opacity .2s;
    transition: border-bottom 95ms;
}

ul a:hover {
  font-weight: bold;
  opacity: 1;
  border-bottom: 3px solid #69B99D;
}

h1, ul{
  font-family: "Mulish", sans-serif;
}

main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 58px;
}

h1 {
  font-size: 49px;
  line-height: 56px;
  color: #1f1534;

  font-weight: normal;

  width: 490px;
}

h1 span {
  color: #89c5cc;
  font-weight: bold;
}

p {
  font-size: 14px;
  line-height: 28px;
  color: #7d7987;
  width: 440px;
  margin: 40px 0;
}

button {
  color: white;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;

  background: #69B99D;
  border: 0;
  padding: 14px 32px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 4px;

  cursor: pointer;

  transition: background .2s;
}

button:hover{
  background-color: #54947e;
}

footer {
  font-size: 14px;
  line-height: 28px;

  text-align: center;

  margin-top: 80px;
}

footer a {
  font-weight: bold;
  transition: all .2s;
}

footer a:hover{
  color: #69B99D;
}

#balls {
    position: fixed;
    bottom: 0;
    right: 0;
}