@import url('https://fonts.googleapis.com/css?family=EB+Garamond:400,500|Roboto:400,700');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,700&display=swap');


/* $white: #fff
$gray: #a5a5a5;
$black: #322c2c;
$text: #8e8e8e;
 */

:root{
    --white:#fff;
    --gray:#a5a5a5;
    --black:#322c2c;
    --text:#8e8e8e;
}

* {
  box-sizing: border-box;
}

::before{
  box-sizing: border-box;
}

::after{
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: var(--text);
  background: var(--white);
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: 'EB Garamond', serif;
  color: var(--black);
  line-height: 1.1;
}

h2, h3 {
  color: var(--black);
  font-weight: 400;
}

h1 {
  font-size: 2.325rem;
  font-weight: 500;
  margin: 0;
  color:#e6ce77;
}

h2 {
  font-size: 2rem;
  margin: 0 0 2rem;
}

h3 {
  font-size: 1.75rem;
  margin: 0 0 2rem;
}

p {
  margin: 0 0 1.5rem;
  text-align: left;
}

p:nth-child(4){
  margin: 0;
}

a {
  color: var(--gray);
  text-decoration: none;
}

a:hover{
  color: black;
}

blockquote {
  font-style: italic;
  text-align: center;
  width: 40rem;
  height: auto;
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}


ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li {
  margin: 0 0.5rem 0 0;
}

.intro {
  margin: 1rem 0;
  padding: 0;
  width: 100%;
}

#logo {
  color: black;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  margin: 0;
}

.container_about_page {
  margin: auto;
  padding: 0 1rem;
  max-width: 75rem;
  width: 100%;
}

main {
  padding: 2rem 0;
}

/* .grid {
  > [class*="column-"] {
    padding: 1rem;
  }
} */

.section-heading {
  transform: rotate(0) translateX(0);
  margin-top: 40px;
  margin-bottom: 20px;
}

.img_about {
	width: 100%;
  height: 100%;
	object-fit: cover;
}

footer {
  text-align: center;
}

@media (min-width: 600px) {
  body {
    font-size: 1.125rem;
  }
  h1 {
    font-size: 3.25rem;
  }
  
  h2 {
    font-size: 2.75rem;
    color: #e6ce77;
  }

  h3 {
    font-size: 2.25rem;
    color: #e6ce77;
  }
  
  .img_about {
    width: 50%;
    height: 50%;
    
  }
  
  .section-heading {
    position: absolute;
    margin-left: 24px;
    transform-origin: top left;
    transform: rotate(-90deg) translateX(-100%);
  }
  
  .intro {
    padding: 1rem;
  }
  
  blockquote {
    width: 30rem;
    height: 40rem;
  }
}