/* Reset some default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #FFF9F9;
  color: #35312B;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  width: 100%;
}

.logo svg {
  margin-bottom: 20px;
  max-width: 88vw;
}

.email {
  display: block;
  font-size: 42px;
  color: #19A658;
  position: relative;
  top: -14.5rem;
}

@media screen and (max-width: 992px) {
  .email {
    font-size: 38px
  }
}

@media screen and (max-width: 500px) {
  .email {
    font-size: 24px
  }
}

.email:hover {
  color: #35312B;
}

.deco {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  overflow:hidden;
}

.deco-left {
  position: absolute;
  top: calc(50vh - 12rem);
  left: calc(50vw - 34rem);
}

.deco-bottom {
  position: absolute;
  bottom: calc(50vh - 240px);
  left: calc(50vw - 219px);
}

.deco-topright {
  position: absolute;
  top: calc(50vh - 18rem);
  right: calc(50vw - 30rem);
}

.deco-bottomright {
  position: absolute;
  bottom: calc(50vh - 24rem);
  right: calc(50vw - 32rem);
}


@media screen and (max-width: 700px) {
  .deco-left {
    top: 0;
    left: calc(50vw - 119px);
    transform: rotate(90deg);
  }
}