
:root {
  --bg: #492DC8;
  --cyan: #4BDEFF;
  --light-pink: #FFB3C6;
  --pink: #FF6DA3;
  --violet: #9D4EDD;
}


html,
body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  font-size: 2vw;
  font-weight: 200;
  font-family: "Days One", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  margin: 0;
  font-weight: 200;
}

section {
  width: 90vw;
}


.site-header {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  font-weight: 400;
  font-size: 1.5em;
  color: var(--pink);
}


.know-about {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 1em;
  color: var(--bg);
}


.know-about p, .know-about h2 {
  background: var(--cyan);
  border-radius: 2em;
  padding: 0.5vw 15vw;
  font-weight: 100;
  width: 100%;
  font-size: 3vw;
  margin: 2vw 0;
}


.orbipet {
  display: flex;
  justify-content: space-between;
}


.orbipet img {
  width: 44vw;
}


.orbipet-right {
  background: var(--pink);
  border-radius: 2em;
}


.row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2vw;
}

.row div {
  border-radius: 2em;
}

.row img {
  pointer-events: none;
}

.row1 {
  height: 65vw;
}

.row2 {
  height: 40vw;
}


.flower {
  background-color: var(--pink);
  padding: 0 1.5vw 0 1.5vw;
  display: flex;
  align-items: flex-end;
  position: relative;
  width: 18vw;
  justify-content: center;
}

.flower img {
  height: 90%;
}


.flower-action {
  position: absolute;
  transition: all 0.2s ease;
  opacity: 0;
  background: var(--cyan);
  color: var(--bg);
  transform: scale(0.7);
  height: 17vw;
  display: flex;
  width: 17vw;
  font-size: 1.5vw;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  top: 25vw;
}

.flower:hover .flower-action {
  opacity: 1;
  transform: scale(1);
}


.cow {
  background-color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 67vw;
  position: relative;
  overflow: hidden;
}

.cow img {
  height: 60%;
}


.cow .teeths {
  position: absolute;
  bottom: -0.5vw;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  width: 100%;
  height: auto !important;
}

.cow:hover .teeths {
  transform: translateY(0);
}

.cow .cow-thoughts {
  position: absolute;
  top: 2vw;
  right: 2vw;
  transform: translateX(150%);
  transition: transform 0.4s ease;
  height: auto !important;
  color: white;
  background: var(--pink);
  border-radius: 3vw;
  padding: 1em;
  width: 19vw;
  text-align: center;
  font-size: 1.5vw;
  margin: 0;
}

.cow:hover .cow-thoughts {
  transform: translateX(0);
}


.owl1 {
  background-color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44vw;
  position: relative;
  overflow: hidden;
}

.owl1 img {
  height: 40%;
}


.owl-thoughts {
  position: absolute;
  top: 0.5vw;
  right: 2vw;
  transform: translateY(-150%);
  transition: transform 0.4s ease;
  height: auto !important;
  color: var(--bg);
  background: var(--cyan);
  border-radius: 3vw;
  padding: 1em;
  width: 18vw;
  text-align: center;
  font-size: 1.5vw;
}

.owl1:hover .owl-thoughts {
  transform: translateY(0);
}

.wave1 {
  position: absolute;
  bottom: -2.5vw;
  width: 100%;
  transform: translateX(25%) translateY(100%);
  transition: transform 0.3s ease;
}

.owl1:hover .wave1 {
  transform: translateX(0) translateY(0);
}

.wave2 {
  position: absolute;
  bottom: -1.5vw;
  width: 100%;
  transform: translateX(25%) translateY(100%);
  transition: transform 0.4s ease;
}

.owl1:hover .wave2 {
  transform: translateX(0) translateY(0);
}


.bird {
  background-color: var(--light-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44vw;
  position: relative;
  overflow: hidden;
}

.bird img {
  height: 60%;
}


.bird-action{
  position: absolute;
  top: 0.5vw;
  right: 0.5vw;
  transform: translateX(150%);
  transition: transform 0.4s ease;
  height: auto !important;
  color: var(--bg);
  border-radius: 1em;
  padding: 1em;
  width: 19vw;
  text-align: center;
  font-size: 1.5vw;
  margin: 0;
}

.bird:hover .bird-action {
  transform: translateX(0);
}

.star1 {
  position: absolute;
  top: 7.5vw;
  left: 4vw;
  width: 8%;
  height: auto !important;
  transform: translateX(-300%) translateY(-75%);
  transition: transform 0.3s ease;
}

.bird:hover .star1 {
  transform: translateX(0) translateY(0);
}

.star2 {
  position: absolute;
  top: 4vw;
  left: 7vw;
  width: 12%;
  height: auto !important;
  transform: translateX(-100%) translateY(-200%);
  transition: transform 0.4s ease;
}

.bird:hover .star2 {
  transform: translateX(0) translateY(0);
}


.mashrooms {
  display: flex;
  justify-content: space-evenly;
}

.mashrooms div {
  padding: 1%;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mashrooms img {
  width: 90%;
}

.mashrooms div:nth-child(1) {
  background-color: var(--cyan);
  border-radius: 1.5em 0 0 1.5em;
}

.mashrooms div:nth-child(2) {
  background-color: var(--violet);
}

.mashrooms div:nth-child(3) {
  background-color: var(--pink);
}

.mashrooms div:nth-child(4) {
  background-color: var(--light-pink);
  border-radius: 0 1.5em 1.5em 0;
}


.animals {
  display: flex;
  justify-content: space-between;
}

.animals div {
  display: flex;
  border-radius: 2em;
  align-items: center;
  justify-content: center;
  padding: 1vw;
  width: 42vw;
  height: 39vw;
  position: relative;
  overflow: hidden;
}

.animals div:nth-child(1) img {
  width: 50%;
}

.animals div:nth-child(2) img {
  width: 90%;
}

.animals div:nth-child(1) {
  background-color: var(--light-pink);
}

.animals div:nth-child(2) {
  background-color: var(--violet);
}


.bird2-action{
  position: absolute;
  top: 2vw;
  right: 2vw;
  transform: translateX(150%);
  transition: transform 0.4s ease;
  height: auto !important;
  color: white;
  background: var(--pink);
  border-radius: 2.5vw;
  padding: 0.75em 2.5em;
  width: 14.5vw;
  text-align: center;
  font-size: 1.4vw;
  margin: 0;
}

.bird2:hover .bird2-action {
  transform: translateX(0);
}

.small-flower {
  position: absolute;
  bottom: -0.5vw;
  left: 11vw;
  width: 13% !important;
  height: auto !important;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.bird2:hover .small-flower {
  transform: translateY(0);
}

.big-flower {
  position: absolute;
  bottom: -0.5vw;
  left: 5vw;
  width: 14% !important;
  height: auto !important;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.bird2:hover .big-flower {
  transform: translateY(0);
}


.owl2-action{
  position: absolute;
  top: 0.5vw;
  right: 0.5vw;
  transform: translateY(-150%);
  transition: transform 0.4s ease;
  height: auto !important;
  color: white;
  border-radius: 1em;
  padding: 1em;
  width: 19vw;
  font-size: 1.4vw;
  text-align: right;
  margin: 0;
}

.owl2:hover .owl2-action {
  transform: translateY(0);
}


.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2vw;
  color: var(--bg);
  background: var(--pink);
  border-radius: 1em;
  padding: 1em;
}

.contacts p {
  margin: 0;
}


footer {
  display: flex;
  width: 90vw;
  justify-content: space-between;
  color: var(--violet);
}
