* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100vw;
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

header {
  width: 100%;
  padding: 1rem 10%;
  background: #d61b3e;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo-container {
  display: flex;
  height: 100%;
}

header .gif-container img {
  max-height: 150px;
}

header .logo-container img {
  position: relative;
  top: -2rem;
  max-width: 200px;
}

main {
  padding: 2rem 10%;
  color: #341a5c;
  position: relative;
}

main img {
  position: absolute;
  right: 10%;
  z-index: -1;
  top: 35%;
}

h1 {
  font-weight: 400;
  font-size: 1.5rem;
}

h2 {
  font-size: 900;
  font-size: 2rem;
  color: #d61b3e;
}

article {
  margin: 2rem 0 3rem 0;
}

article p {
  font-weight: 700;
  color: #23419c;
  margin-bottom: 1.25rem;
}

article p span {
  padding: 0.5rem .75rem;
  background: #23419c;
  color: white;
}

article ul li {
  list-style: none;
  margin: .5rem 0;
}

article ul li em {
  font-style: normal;
  font-weight: 700;
}

main a {
  background: #d61b3e;
  color: white;
  border-radius: 25px;
  padding: 1rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.2s;
}

footer {
  background: #23419c;
  padding: 2.5rem 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5rem;
}

footer img:hover {
  opacity: 0.8;
  transition: 0.2s;
}

footer .social-media img {
  margin: 0 .5rem;
}

footer>a img{
  max-width: 200px;
}

@media (max-width: 769px) {

  header div {
    width: 45%;
  }

  header div img {
    width: 100%;
  }

  header .logo-container img {
    top: 0;
  }

  h1 {
    font-size: 1.25rem;
  }

  main a {
    display: block;
    text-align: center;
    margin: 0 15%;
  }

  main img {
    opacity: 0.5;
  }

  article ul li {
    line-height: 1.6rem;
  }

  footer {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
  }

  footer .social-media {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
  }

  footer .social-media a {
    margin: 0 .5rem;
  }
  
}