@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

body,
html {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #ffffff;
  background: #242424;
  padding: 0;
  margin: 0;
  overscroll-behavior: none;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: 1;
  position: relative;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.4s;
}

a:hover {
  font-weight: 900;
  letter-spacing: 0.2px;
}

header {
  padding: 2em 4em 1em 4em;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #242424;
}

header h1 {
  font-size: 14px;
  font-weight: 300;
}

header p {
  font-size: 12px;
  padding-right: 1em;
}

header .about {
  text-align: right;
  min-width: 200px;
  padding-left: 1em;
}

header .connect {
  text-align: left;
  min-width: 200px;
}

header .logo img {
  max-width: 150px;
}

.footer {
  font-size: 1rem;
  font-weight: 300;
  padding: 2em;
  display: flex;
  justify-content: right;
}

.footer .legal {
  width: 200px;
  line-height: 1.15;
  font-weight: 300;
  text-align: right;
}

.container {
  margin: auto;
  display: flex;
  margin-top: 120px;
  width: 100%;
  padding-left: 1.4em;
  padding-right: 1.4em;
  position: relative;
}

.project-about {
  padding-left: 0.4em;
  padding-right: 1.2em;
  margin-bottom: 0.4em;
  width: 40%;
  position: fixed;
  max-height: calc(100vh - 2.4em);
  overflow: hidden;
}

.project-about p {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.project-about a {
  font-size: 1rem;
  font-weight: 600;
  color: rgb(131, 182, 248);
}

.images {
  width: 60%;
  margin-left: 40%;
  text-align: right;
  padding-left: 1.2em;
}

.images h3 {
  display: none;
  font-size: 1.1rem;
  margin-top: 8px;
}

.images h3 a {
  color: rgba(250, 18, 185);
  font-weight: 300;
}

.vid {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.vid::after {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.vid iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) {

  .project-about {
    width: 35%;
    max-height: 70%;
  }

  .images {
    width: 65%;
    margin-left: 35%;
  }
}

@media (max-width: 800px) {

  .nav nav a {
    margin-left: 10px;
  }

  .container {
    flex-direction: column;
    padding-top: 100px;
  }

  .project-about {
    width: 100%;
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0;
  }

  .images {
    width: 100%;
    padding-left: 0;
    margin: 0;
  }

  .images h3 {
    display:flex;
  }
}