/* Text Font (Founders Grotesk) */
@font-face {
    font-family: 'textfont';
    src: url('textfont.otf');
  } 
/* The Engdex Nav Font */
@font-face {
  font-family: 'logofont';
  src: url('logofont.otf');
}
/* Insp Font */
@font-face {
  font-family: 'creato-display';
  src: url(creato-display.otf);
}
/* Insp + Nav + Title */
.title {
  margin-top: 2rem;
  font-family: 'logofont';
  text-align: center;
  font-size: 50px;
  text-decoration: none;
  color: #000000;
  margin-right: 20px;
  margin-left: 3rem;
}
p {
  margin-top: 65px;
  padding: 40px;
  font-family:'textfont';
  font-size: 50px;
  text-align: left;
}
.desc {
  line-height: 4rem;
  font-family: 'creato-display';
  margin-bottom: 1rem;
  margin-top: 8rem;
}
.desc2 {
    margin-top: -5rem;
    font-family: 'creato-display';
    font-size: 25px;
}
.container {
  display: flex;
}
.header{
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 0;
  margin-right: 0rem;
  flex: 1;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  font-family: 'textfont';
  margin-top: 3rem;
}
nav li {
  margin-left: 20px;
} 
nav li a {
  color:#000000;
  text-decoration: none;
  font-size: 20px;
}
nav li a:hover {
  color: #e3caac;;
}
button {
  background-color: #FAF6EB;
  color: black;
  border-radius: 10em;
  font-size: 18px;
  font-weight: 600;
  padding: 1em 2em;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 1px solid black;
  box-shadow: 0 0 0 0 black;
  margin-top: 2.2rem;
  margin-right: 5rem;
  flex: 0;
}
button a {
  text-decoration: none;
  color: black;
  font-family: 'textfont';
  font-size: 20px;
}
button:hover {
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 2px 5px 0 0 black;
}
button:active {
  transform: translateY(2px) translateX(1px);
  box-shadow: 0 0 0 0 black;
}
.linkedin-button {
  margin-left: 2rem;
  margin-top: -6rem;
  background-color: #adb3f0;
  font-family: 'creato-display';
  font-size: 20px;
  text-decoration: none;
}
.email-button {
  background-color: rgb(223, 152, 191);
  margin-left: -4rem;
  margin-top: -4rem;
  font-family: 'creato-display';
}
/*Footer*/
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.2rem;
}
.footer p {
    font-size: 20px;
    margin-top: 9rem;
}
.social {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.social .bx {
  font-size: 16rem;
}
.social .bx:hover {
  transition: 0.3 all linear;
}
h2 {
    font-family:'textfont';
}

/* Responsive */
@media (max-width: 1068px){
    .container {
        margin: 0 auto;
        width: 95%;
    }
    .home-text{
        width: 100%;
    }
}
@media (max-width: 800px){
    .nav {
        padding: 14px 0;
    }
    .post-container {
        margin: 0 auto;
        width: 95;
    }
}
@media (max-width: 768px){
    .nav {
        padding: 14px 0;
    }
    .section {
        padding: 2rem 0;
    } 
    .header-content {
      margin-top: 3rem !important;  
    }
    .home {
        min-height: 380px;
    }
    .home-title {
        font-size: 3rem;
    }
    .header-title {
        font-size: 2rem;
    }
    .header-img {
        height: 370px;
    }
    .footer {
        flex-direction: column;
        row-gap: 1rem;
        padding: 20px 0;
        text-align: center;
    }
    .post-header {
        height: 435px;
    }
    .post-content {
        margin-top: 9rem !important;
    }
}
@media (max-width:396px) {
    .home-title {
        font-size: 2rem;
    }
    .home-subtitle {
        font-size: 0.9rem;
        font-weight: 400;
    }
    .home {
        min-height: 300px;
    }
    .post-box {
        padding: 10px;
    }
    .header-title {
        font-size: 1.4rem;
    }
    .header-img {
        height: 240px;
    }
    .post-header {
        height: 355px;
    }
    .post-content {
        margin-top: 5rem !important;
    }
    .post-text {
        font-size: 0.0875rem;
        line-height: 1.5rem;
        margin: 10px 0;
        text-align: justify;
    }
}
