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

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

body {
  font-family: "Geist Mono", monospace;
  background: deepskyblue;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.text-medium {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3000;
  font-size: 1rem;
  font-weight: 200;
  text-align: center;
}

.text-white {
  color: white;
}

.bg-dark {
  background-color: #1e1e1e;
}

/* Container - Sky*/
#sky {
  width: 100vw;
  height: 100vh;
}

/* Sun  */
.theSun {
  opacity: 1;
  box-shadow: 0px 0px 15px 3px yellow;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 15vh;
  left: 30vw;
  animation: sunpulse 2s alternate infinite;
  border-radius: 50%;
  background-image: radial-gradient(circle, #ffd200 95%, #f7971e);
}

@keyframes sunpulse {
  from {
    box-shadow: 0 0 100px #ff0, 0 0 100px #ff0;
  }
  to {
    box-shadow: 0 0 25px #ff0, 0 0 75px #ff0;
  }
}

/* Sunglasses */
.sunglasses {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 25px;
  z-index: 2;
}

.sunglasses:before,
.sunglasses:after {
  content: "";
  position: absolute;
  width: 28px;
  height: 20px;
  background: #000;
  border-radius: 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.sunglasses:before {
  left: 0;
}

.sunglasses:after {
  right: 0;
}

.sunglasses-bridge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 4px;
  background: #000;
  border-radius: 2px;
}

/* Sun facial features */
.eyebrow {
  position: absolute;
  width: 18px;
  height: 3px;
  background: transparent;
  z-index: 3;
}

.eyebrow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 3px;
}

.left-eyebrow {
  top: 25%;
  left: 22%;
}

.left-eyebrow::before {
  transform: rotate(-15deg);
  border-radius: 50% 50% 0 0;
}

.right-eyebrow {
  top: 22%;
  right: 22%;
}

.right-eyebrow::before {
  transform: rotate(15deg);
  border-radius: 0 0 50% 50%;
}

.smirk {
  position: absolute;
  width: 35px;
  height: 15px;
  border: 3px solid #000;
  border-top: none;
  border-left: none;
  border-radius: 0 0 15px 0;
  bottom: 30%;
  right: 25%;
  transform: rotate(-2deg);
  z-index: 3;
}

/* Clouds */

.cloudwrapperOne,
.cloudwrapperTwo,
.cloudwrapperThree,
.cloudwrapperFour,
.cloudwrapperFive {
  position: absolute;
  z-index: 2001;
}

.cloudwrapperOne {
  animation: movecloudsoversky 45s linear infinite;
  animation-delay: -2s;
}

.cloudwrapperTwo {
  animation: movecloudsoversky 52s linear infinite;
  animation-delay: -18s;
}

.cloudwrapperThree {
  animation: movecloudsoversky 38s linear infinite;
  animation-delay: -35s;
}

.cloudwrapperFour {
  animation: movecloudsoversky 55s linear infinite;
  animation-delay: -25s;
}

.cloudwrapperFive {
  animation: movecloudsoversky 48s linear infinite;
  animation-delay: -12s;
}

.cloud {
  width: 200px;
  height: 60px;
  background: white;
  position: relative;
  border-radius: 200px;
  z-index: 2000;
}

.cloud:before,
.cloud:after {
  content: "";
  background: white;
  position: absolute;
  width: 100px;
  height: 80px;
  top: -15px;
  left: 10px;
  border-radius: 100px;
  transform: rotate(30deg);
}

.cloud:after {
  width: 120px;
  height: 120px;
  top: -55px;
  left: auto;
  right: 15px;
}

.c1 {
  margin-top: 12vh;
  transform: scale(0.8);
}

.c2 {
  margin-top: 68vh;
  transform: scale(1.2);
}

.c3 {
  margin-top: 35vh;
  transform: scale(0.9);
}

.c4 {
  margin-top: 82vh;
  transform: scale(0.7);
}

.c5 {
  margin-top: 50vh;
  transform: scale(1.1);
}

@keyframes movecloudsoversky {
  0% {
    transform: translate(-25vw, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translate(125vw, 0);
    opacity: 0;
  }
}

/* Sun rays */

.ray_box {
  position: absolute;
  margin: auto;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70px;
  animation: ray_anim 120s linear infinite;
}

.ray {
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  margin-left: 10px;
  border-radius: 80% 80% 0 0;
  position: absolute;
  opacity: 0.1;
}

.ray1 {
  height: 170px;
  width: 30px;
  transform: rotate(180deg);
  top: -175px;
  left: 15px;
}

.ray2 {
  height: 100px;
  width: 8px;
  transform: rotate(220deg);
  top: -90px;
  left: 75px;
}

.ray3 {
  height: 170px;
  width: 50px;
  transform: rotate(250deg);
  top: -80px;
  left: 100px;
}

.ray4 {
  height: 120px;
  width: 14px;
  transform: rotate(305deg);
  top: 30px;
  left: 100px;
}

.ray5 {
  height: 140px;
  width: 30px;
  transform: rotate(-15deg);
  top: 60px;
  left: 40px;
}

.ray6 {
  height: 90px;
  width: 50px;
  transform: rotate(30deg);
  top: 60px;
  left: -40px;
}

.ray7 {
  height: 180px;
  width: 10px;
  transform: rotate(70deg);
  top: -35px;
  left: -40px;
}

.ray8 {
  height: 120px;
  width: 30px;
  transform: rotate(100deg);
  top: -45px;
  left: -90px;
}

.ray9 {
  height: 80px;
  width: 10px;
  transform: rotate(120deg);
  top: -65px;
  left: -60px;
}

.ray10 {
  height: 190px;
  width: 23px;
  transform: rotate(150deg);
  top: -185px;
  left: -60px;
}

@keyframes ray_anim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

main {
  position: relative;
  height: 100vh;
  width: 100vw;
}
