@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
  padding: 0;
  margin: 0;
}

h2 {
  font-size: 2.5em;
  line-height: 2.5em;
  font-weight: normal;
  height: 2.5rem;
}

body {
  box-sizing: border-box;
  font-family: "Montserrat";
  height: 100vh;
  display: flex;
  flex-direction: column;
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem 3rem 1rem 3rem;
}

.phash, .pgracias {
  font-size: 1.2em;
  color: #777777;
}


.phash {
  margin-top: 2rem;
}
main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  margin-top: 10rem;
}
main div {
  display: flex;
  align-items: center;
}
main img {
  width: 100%;
}


.a {
  color: #00b1ff;
}

.b {
  color:#0087cb;
  height: 80px;
}

.pheader {
  color:#00426c;
  font-size: 2em;
  text-align: center;
  margin-bottom: 2rem;
}

.pheader span {
  display: block;
}

a {
  text-decoration: none;
  color: #0a0a0a;
  font-size: 1em;
}

a span {
  color:#007dbb;
}

@media screen and (min-width: 900px) {
  body {
    flex-direction: row;
    justify-content: center;
    font-size: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  header{
    align-items: flex-start;
  }


  h2 {
    height: 8rem;
    text-align: left;
    font-weight: 600;
    margin-bottom: 3rem;
  }

  h2:first-of-type {
    height: 5rem;
    margin: 0;
  }

  .pheader {
    font-weight: 600;
  }
  
  

  .phash, .pgracias {
    font-size: 1.8em;
  }

  main img {
    width: 100%;
  }


  main {
    flex-direction: row;
    width: 100%;

  }
}