/* Sass Document */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap");
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translate3d(0, 0, 0); }
  50% {
    opacity: 0.9;
    transform: scale(1.1); }
  80% {
    opacity: 1;
    transform: scale(0.89); }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0); } }
html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0; }

body {
  display: flex;
  flex-direction: column;
  align-content: flex-end;
  align-items: center;
  background-color: #ffe600;
  color: #1d1e1c; }
  body header {
    display: flex;
    flex-direction: row;
    justify-content: center; }
    body header h2 {
      border-top: solid 1rem #1d1e1c;
      padding: 0;
      margin: 0;
      color: #1d1e1c;
      font-size: 2rem;
      font-family: 'Roboto Slab', serif; }
  body section {
    margin-top: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px; }
    body section img {
      width: 100%;
      max-width: 60%;
      padding: 0;
      margin: 0; }
    body section h3 {
      padding: 0;
      margin: 0;
      color: #1d1e1c;
      font-size: 2.2rem;
      font-family: 'Roboto', sans-serif;
      display: none; }
    body section p {
      font-size: 4rem;
      font-weight: 800;
      text-align: center;
      -webkit-text-stroke: 1px #1d1e1c;
      color: transparent; }
  body footer ul {
    display: flex;
    flex-direction: row;
    justify-content: center; }
    body footer ul li {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 10px; }
      body footer ul li img {
        width: 44px; }
      body footer ul li a {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        color: #1d1e1c;
        font-family: 'Roboto', sans-serif;
        font-size: 0.75rem; }
        body footer ul li a :hover {
          transform: scale(1.2) translate3d(0, 0, 0); }

@media only screen and (max-width: 600px) {
  body section {
    padding: 10% 0; }
    body section img {
      max-width: 90%; }
    body section p {
      font-size: 2rem !important;
      padding: 10% 10% 0% 10%; } }
