body,
html {
  margin: 0;
  padding: 0;
  font-size: 16px;
  background-color: #f0f;
  scroll-behavior: smooth;
}
section {
  display: flex;
  justify-content: center;
}
section .container {
  max-width: 450px;
  padding: 5rem 3rem;
}
#header {
  z-index: 1;
  background-color: #f0f;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
}
#header .logo-container {
  width: 60vw;
  max-width: 100%;
}
#header img {
  width: 100%;
}
#header img.mobile {
  display: none;
}
#header .bouncing-arrow {
  position: absolute;
  bottom: 2rem;
  left: calc(50% - 25px);
}
#header .bouncing-arrow a {
  cursor: pointer;
  padding: 0 10px;
}
#header .bouncing-arrow img {
  cursor: pointer;
  width: 50px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
#content {
  background-color: #fff;
  z-index: 2;
  position: relative;
}
#contact {
  background-color: #0dffb4;
}
#contact .container {
  width: 100%;
}
#contact .container .quote {
  position: relative;
  padding: 2rem 0;
}
#contact .container .quote:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  background-image: url(/img/arrow-green.svg);
  background-repeat: no-repeat;
}
#contact .container .quote:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  background-image: url(/img/arrow-pink.svg);
  background-repeat: no-repeat;
}
#contact .container h2 {
  padding-bottom: 1.5rem;
}
#social {
  background-color: #f0f;
}
#social ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}
#social ul li {
  line-height: 0;
  height: 70px;
  margin: 0 2rem;
}
#social ul li a:hover svg {
  color: #0dffb4;
  fill: #0dffb4;
}
#social ul li svg {
  width: 70px;
  line-height: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
#footer {
  background-color: #000;
}
#footer p,
#footer p a {
  color: #fff;
}
#footer p a:hover {
  color: #f0f;
}
.pink {
  color: #f0f;
}
* {
  font-family: sofia-pro, Arial, Helvetica, sans-serif;
  font-weight: 500;
  line-height: 1.4;
}
p {
  margin: 0;
  padding-bottom: 1.5rem;
  font-size: 1.4rem;
  cursor: default;
}
span {
  font-size: inherit;
  font-weight: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 900;
  padding-bottom: 2em;
  cursor: default;
}
a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease-out;
  cursor: pointer;
  font-size: 100%;
}
a:focus,
a:hover {
  color: #f0f;
}
.nomt {
  margin-top: 0;
}
.nomb {
  margin-bottom: 0;
}
.nopt {
  padding-top: 0;
}
.nopb {
  padding-bottom: 0;
}
.text-center {
  text-align: center;
}
@media only screen and (max-width: 600px) {
  #header img.desktop {
    display: none;
  }
  #header img.mobile {
    display: initial;
  }
  #social ul li {
    height: 50px;
    margin: 0 1rem;
  }
  #social ul li svg {
    width: 50px;
  }
  #footer p {
    font-size: 80%;
  }
  section .container {
    max-width: 450px;
    padding: 3rem 3rem;
  }
  #header .bouncing-arrow img {
    left: calc(50% - 13px);
  }
  #header .bouncing-arrow img {
    width: 26px;
  }
}
@media only screen and (min-width: 900px) {
  * {
    font-size: 140%;
  }
  p {
    font-size: 1em;
    line-height: 1.5;
    padding-bottom: 1.8rem;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    padding-bottom: 4rem;
    line-height: 1.1;
  }
  h2 {
    font-size: 48px;
  }
  h2 span {
    line-height: inherit;
  }
  #header .logo-container {
    max-width: 500px;
  }
  #contact .container,
  section .container {
    max-width: 700px;
  }
  #contact .container h2 {
    padding-bottom: 1.8rem;
  }
  #contact .container .quote:after,
  #contact .container .quote:before {
    width: 4rem;
    height: 4rem;
  }
}
.bounce {
  -webkit-animation: bounce 2s;
  animation: bounce 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
  0%,
  100%,
  25%,
  50%,
  75% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
}
@keyframes bounce {
  0%,
  100%,
  25%,
  50%,
  75% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
}
