@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Varela Round", sans-serif;
  /* margin: 100px; */
}

.wrapper {
  height: 250px;
  width: 300px;
  position: relative;
  overflow: hidden;
  background-color: green;
  padding: 60px;
  visibility: hidden;
}

.background {
  height: 250px;
  width: 300px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #489ab4, #c0e2ee);
}

.logo1 {
  position: absolute;
  top: 50px;
  left: 75px;
  z-index: 10;
  width: 50%;
}

.man {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.large_puddle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.small_puddle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.rain_main {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.rain_minor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
}

.umbrella {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.clouds {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.logo2 {
  position: absolute;
  top: 50px;
  left: 148px;
  z-index: 10;
  width: 40%;
}

.text {
  position: absolute;
  top: 130px;
  left: 149px;
  z-index: 10;
  text-align: center;
  font-size: 0.6rem;
  color: white;
  opacity: 0;
}

.cta {
  height: 20px;
  width: 60px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  left: 178px;
  top: 180px;
  z-index: 100;
  color: #489ab4;
  box-shadow: none;
  border: none;
  font-size: 8.5px;
  border: 1px solid white;
  text-align: center;
  padding-top: 0.25rem;
  opacity: 0;
}

/* Button code */

.btn {
  height: 30px;
  width: 60px;
  background-color: rgb(0, 0, 0);
  position: fixed;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  left: 10px;
  z-index: 100;
  color: white;
  box-shadow: none;
  border: none;
  font-size: 15px;
  border: 1px solid black;
}

.btn:hover {
  color: white;
  border: 1px solid rgba(0, 0, 0, 0.8);
}

#pause {
  left: 10px;
  top: 260px;
}
