* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

body.day {
  background: radial-gradient(50% 50% at 50% 50%, #C6E2F7 0%, #A0CCED 100%);

}
body.night {
  background: radial-gradient(50% 50% at 50% 50%, #1D3C86 0%, #0E2977 100%);
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 5px;
}

.logo {
  width: 261px;
  height: 36px;
  position: absolute;
  top: 20px;
  left: 20px
}

.sun {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 350px;
  margin-top: -180px;
  margin-right: -180px;

  /* spin the whole sun */
  animation: slowspin 140s linear infinite;
  transform-origin: 50% 50%;
}

.sun img {
  max-width: 350px;

  /* gentle pulse only */
  animation: sunpulse 6s ease-in-out infinite;
  transform-origin: 50% 50%;
  filter: drop-shadow(0 0 45px rgba(255, 234, 84, 1));
}

@keyframes slowspin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes sunpulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.moon {
  position: fixed;
  z-index:-1;
  top:0;
  width:100%;
  max-width: 350px;
  margin-top:-180px;
  right:0;
  margin-right:-180px;
}
.moon img {
  max-width: 350px;
  animation: slowspin 180s linear infinite;
  transform-origin: 50% 50%;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.35));
}
@keyframes slowspin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.buttoned.container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  height: auto;
  min-height: auto;
  flex-shrink: 0;
}

.statement.container {
  text-align: center;
  margin: 0;
  height: auto;
  min-height: auto;
  flex-shrink: 0;
  padding:0
}

.statement.container p {
  margin: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
  font-family: "Bree Serif", serif;
  font-weight: 400;
  font-style: normal;
  color: #92BAF0;
  font-size: 40px;
  letter-spacing: 2m;
  line-height: 1.05;
  padding: 0 20px;
}
.day .statement.container p {
  color: #27919A;
}

button,
.generate-btn {
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  color: #000;
  cursor: pointer !important;
  transition: all 0.3s ease;
  height: 42px;
  background: #fff;
  border-radius: 100px;
  margin-top: 20px;
}
button:hover {
  background-color: #C5DCF4!important;
}
.day button:hover {
  background-color: #e8f3ff!important;
}

/* your svg/img */
.kindness-icon img,
.kindness-icon svg {
  margin-left: 5px;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

button:hover .kindness-icon img,
button:hover .kindness-icon svg {
  filter: brightness(0) contrast(1.2);
}

.footer {
  width: 100%;
  font-size: 12px;
  letter-spacing: .05em;
  line-height: 17px;
  text-align: center;
  color: #C5DCF4;
  position: absolute;
  bottom: 20px;
}
.footer a, .footer a:visited {
  color: #C5DCF4;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer span {
  color: #fff;
}
.day .footer, .day .footer a, .day .footer a:visited {
  color: #555;
}
.day .footer a:hover, .day .footer span {
  color: #000;
}

@media (max-width: 768px) {
  .sun {
    max-width: 200px;
    margin-top: -100px;
    margin-right: -100px;
  }
  .sun img{
    max-width: 200px;
  }
  .moon {
    max-width: 200px;
    margin-top: -100px;
    margin-right: -100px;
  }
  .moon img{
    max-width: 200px;
  }
}

@media (max-width: 375px) {
  .sun {
    max-width: 200px;
    margin-top: -100px;
    margin-right: -80px;
  }
  .sun img{
    max-width: 200px;
  }
  .moon {
    max-width: 200px;
    margin-top: -100px;
    margin-right: -130px;
  }
  .moon img{
    max-width: 220px;
  }
}

.day .moon, .day .logo-night {
  display: none;
}
.day .sun, .day .logo-day {
  display: block;
}

.night .sun, .night .logo-day {
  display: none;
}
.night .moon, .night .logo-night {
  display: block;
}