body {
  background: #14274e;
  background-image: linear-gradient(#181818, #030303);
  color: rgba(0, 0, 0, 0.87);
  font-family: "Poppins", "Playfair Display", Helvetica, Arial, sans-serif,
    serif;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.canvas {
  width: 100%;
  max-width: 360px;
  height: 100vh;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
}

.frame {
  background-color: #fefefe;
  width: 100%;
  max-height: 450px;
  height: 100%;
  border: 3px solid #fefefe;
  box-shadow: 4px 2px 12px 3px rgba(225, 225, 225, 0.09);
}

.frame {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.head {
  height: 69%;
  background-color: #e8ffff;
}

.head .title {
  font-size: 1.2rem;
  text-align: center;
  padding: 1rem;
  color: #14274e;
}

.head .title span {
  font-size: 3.6rem;
  font-weight: 600;

  font-family: "Playfair Display";
  display: block;
}

.head .connect {
  display: flex;
  justify-content: center;
}

.head .connect .link {
  text-decoration: none;
  color: #333;
  border-bottom: 1px dotted #ddd;
  font-size: 0.81rem;
}

.fotter {
  background-color: #1f4068;
  position: relative;
  height: 31%;
  width: 100%;
  z-index: 1;
}

.ocean {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
}

.blur {
  background-color: rgba(31, 64, 104, 1);
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  filter: blur(21px);
  left: 0;
  animation: pulse 2.1s ease-in-out infinite;
}

.sun {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 100%;
  background-color: #ffd36b;
  background-image: linear-gradient(#fbd46d, #ffd36b);
  box-shadow: 4px 2px 6px 12px rgba(225, 225, 225, 0.03);
  transform: translateY(-50%);
  z-index: -1;
  animation: rise 2.1s ease-in-out, loop 2.3s ease-in-out 2s infinite;
}

@keyframes rise {
  0% {
    transform: translateY(0%);
    opacity: 0;
    filter: blur(10px);
  }

  100% {
    transform: translateY(-50%);
    opacity: 1;
    filter: blur(0px);
  }
}

@keyframes loop {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-51%);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes pulse {
  0% {
    filter: blur(21px);
  }
  50% {
    filter: blur(27px);
  }
  100% {
    filter: blur(21px);
  }
}
