* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
	--body-text: #1B1C1E;
	--white-text: #FFFFFF;
    }

/* html,
body {
    overflow: hidden;
}  */

body {
    background-color: #3D7AF3;
    font-family: 'Montserrat', sans-serif;
    color: var(--white-text);
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

button, input {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.container {
  width: 95%;
  max-width: 1160px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  
}

.background.background-0 {
  background: linear-gradient(to left top, #0440F2, rgba(252, 207, 146, 0) 70%)
}

.background.background-1 {
  background: linear-gradient(to right top, #c3c7ff, rgba(250, 189, 160, 0) 70%)
}

.content {
  position: relative;
  width: 900px;
  margin: 0 auto;
  padding-top: 80px;
  font-family: Lato, sans-serif;
}


.content .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.content #logo {
  width: 100px;
  height: auto;
}

.content .section {
  margin-bottom: 80px;
}

.content .section.intro .title {
  margin-bottom: .05em;
  font-family: 'Montserrat', sans-serif;
  font-size: 65px;
  text-transform: uppercase;
  font-weight: 900;
}

/* ----------- For gsap animation ----------- */

/* .title-container {
  border: 1px solid #000000;
} */

.title-container .title {
  line-height: 0.7;
  padding-top: 3rem;
}

.title-container .title span {
  display: inline-block;
}

.content .section .title {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: .75em;
}

.content .section.intro .sub-title {
  margin-bottom: 1em;
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.content .section.intro .bio {
  width: 70%;
  line-height: 1.25em;
  font-family: 'Lato', sans-serif ;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.content .section.projects h3 {
  margin-bottom: 0.5em;
  font-weight: bold;
}

.content .section.projects {
  height: 20vh;
}

.content .section.projects p {
  width: 70%;
  line-height: 1.25em;
  font-family: 'Lato', sans-serif ;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.content .section.collab {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 20px;
}

.content .section.collab .email {
  /* border-bottom: 0px solid var(--white-text);
  padding-bottom: 0.1em; */
  transition: all 300ms ease-in;
}

.content .section.collab .email:hover {
  
}
.content .section.collab .email .email-link {
  color: var(--white-text);
  padding-bottom: 0.5em;
  font-weight: 400;
  transition: all 300ms ease-in;
  cursor: pointer;
  position: relative;
  display: inline-block;
  letter-spacing: 0.03em;
}

.content .section.collab .email .email-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--white-text);
  transition: width 300ms ease-in-out;
}

.content .section.collab .email a:hover::after {
  width: 100%;
}

.content .spacer {
  height: .05em;
  background-color: #FFFFFF;
  margin-bottom: 40px;
  width: 100%;
}

.divider {
  width: 100%;
  height: 2px;
  background: #fff;
}

.whitespace {
  width: 100%;
  height: 80px;
}

/* ------- header section ------- */

.section-header .section-header-container {
  display: flex;
  padding: 12px 0;
  font-size: 16px;
  justify-content: space-between;
}

/* ------- socials section ------- */

.socials {
  padding: 20px 0;
}

.socials .socials-container {
  display: flex;
  justify-content: space-between;
}

.socials .socials-container a {
  cursor: pointer;
  text-decoration: none;
  font-family: 'Sora', sans-serif !important;
  font-size: 32px;
  color: #FFFFFF;
}

@media(max-width: 900px) {
  .socials .socials-container a {
      font-size: 30px;
      
  }
}

@media(max-width: 768px) {
  .socials .socials-container a {
      font-size: 1.125rem;
  }
}

/* ------- navbar ------- */

.navbar .navbar-container {
  display: flex;
  padding: 12px 0;
  font-size: 16px;
  justify-content: space-between;
}

.navbar .navbar-container .site-title {
  flex-grow: 1;
  font-size: 14px;
}

.navbar .navbar-container .site-type {
  flex-grow: 1;
}

.navbar .navbar-container .site-year {
  flex-grow: 2;
  text-align: right;
  font-size: 14px;
}


/* ------- footer section ------- */

@media(max-width: 768px) {
  .footer .navbar .navbar-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }

  .footer .navbar .navbar-container .site-year {
      font-size: 0.80rem;
      padding: 12px 0;
  }

  .footer .navbar .navbar-container .site-title {
      font-size: .85rem;
      padding: 12px 0;
  }
}