@font-face {
  font-family: 'coffecakeregular';
  src: url('../fonts/coffecake-webfont.woff2') format('woff2'),
       url('../fonts/coffecake-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'londrina_solidregular';
  src: url('../fonts/londrinasolid-regular-webfont.woff2') format('woff2'),
       url('../fonts/londrinasolid-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

html {
    font-size: 18px;
}

body, h1, h2, h3, h4, h5, h6, p, img, a, ul, li {
    margin: 0;
    padding: 0;
    text-align: center;
}

h1 {
  font-family: 'coffecakeregular';
  text-shadow: 3px 3px #ffadad;
  font-size: 4rem;
  margin: 20px 10px;
}

h2 {
  font-family: 'londrina_solidregular';
  font-size: 1.6rem;
  margin: 18px 10px;
}

h3 {
  font-size: 1.2rem;
  text-align: center;
  margin: 16px;
}

a {
  color: #38b6ff;
  text-decoration: none;
}

ul, li {
  margin-left: 20px;
  text-align: left;
}

li {
  margin-left: 10px;
}

body {
    background: #ddf0c6;
    color: #38b6ff;
    font-family: 'Open Sans', sans-serif;
    margin: 0 auto;
}

img {
  margin: 20px 0;
  max-width: 100%;
}

.header, .footer, .content {
    display: grid;
    justify-content: center;
    justify-items: center;
    margin: 20px;
}

.header {
  align-items: center;
  grid-template-columns: 1fr;
}

.title {
  display: flex;
  flex-direction: row;
}

.logo {
  max-width: 400px;
}

.social {
  font-size: 1.6rem;
}

.about {
  color: #333;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  max-width: 1000px;
  background: #eee;
}

.bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items:flex-start;
  gap: 10px;
}

.bio-card {
  color: #333;
  display: flex;
  flex-direction: column;
  max-width: 640px;
  background: #eee;
}

.about img {
  margin: 0;
}

.bio-card img {
  margin: 0;
}

.nav {
  font-family: 'londrina_solidregular';
  display: inline-grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.nav .icon {
  display: none;
}

.content p {
  margin: 40px;
}


.footer p {
  font-size: 0.6rem;
}

@media screen and (max-width: 1024px) {

  .header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .title {
    display: block;
  }

  .logo {
    max-width: 200px;
  }

  .content {
    margin: 0;
  }

  .bio {
    margin: 0;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .about {
    margin: 0;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .about img {
    margin: 0;
  }

  .bio img {
    margin: 0;
  }



}

@media screen and (max-width: 500px) {

  /*Responsive mobile menu hamburger effect*/
  .nav {
    grid-template-columns: 1fr;
    font-size: 24px;
  }
  .nav a {display: none;}
  .nav a.icon {
    display: grid;
  }
  /*.nav.responsive {position: relative;}
  .nav.responsive .icon {
    right: 0;
    top: 0;
  }*/
  .nav.responsive {
    display: flex;
    flex-direction: column;
    justify-items: center;
  }
  .nav.responsive a {
    display: flex;
    justify-content: center;
  }
/*End of Responsive mobile hamburger menu effect*/


.social {
  font-size: 2.5rem;
}

h3 {
    font-size: 1rem;
  }
}