body {
  display:flex; flex-direction:column; justify-content:center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  margin-bottom: 100px;
  max-width: 1000px;
  background-color: rgb(15, 18, 21);
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80px;
  padding-top: 20px;
  color: ghostwhite;
  padding-left: 0px;
  padding-right: 0px;
  transition: 1s ease;
}

.logo:hover {
  filter: brightness(2);
  transition: 1s ease;
}

.youtube-video {
  aspect-ratio: 16 / 9;
  width: 100%;
}

/* TEXT ------------------------------- */

/* Small headers */
h1 {
  font-family: "Helvetica", "Archivo", "Arial", sans-serif;
  color: rgb(88, 88, 88);
  font-size: .6em;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 4px;
  margin-top: 50px;
}

/* Project Titles */
h2 {
  color: ghostwhite;
  font-size: 54px;
  font-family: "Helvetica", "Archivo", "Arial", sans-serif;
  font-weight: 700;
  margin-top: 20px;
  letter-spacing: -1px;
  line-height: .95;
  box-sizing: border-box;
  padding-right: 25px;
}

/* Project Credits */
h3 {
  color: rgb(100, 100, 100);
  font-size: 14px;
  font-family: "Helvetica", "Archivo", "Arial", sans-serif;
  font-weight: 200;
  margin: 0px;
  line-height: 18px;
}

/* Project Description */
p {
  color: ghostwhite;
  font-size: 18px;
  font-family: "Helvetica", "Archivo", "Arial", sans-serif;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0px;
  box-sizing: border-box;
}

/* LINE BREAKS ------------------------------- */

hr {
  border-width: .5px;
  border-color:rgb(40, 40, 40);
  margin-left: 0;
  box-sizing: border-box;
}

hr.summary {
  border: .5px solid rgb(40, 40, 40);
  width: 100%;
  margin-left: 0px;
  margin-top: 0px;
}

hr.project {
  border: .5px solid rgb(40, 40, 40);
  width: 100%;
  margin-left: 0px;
  margin-top: 0px;
  margin-bottom: 30px;
}

/* CODE FOR LINKS */

a:link {
  text-decoration: none;
  color: ghostwhite;
}

a:visited {
  text-decoration: none;
  color: ghostwhite;
}

a:hover {
  text-decoration: none;
  color: rgb(83, 197, 229);
}

a:active {
  text-decoration: none;
  color: grey;
}

.container {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* FOOTER ------------------------------- */

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgb(0, 0, 0);
  display: inline-flex;
  padding-top: 15px;
  padding-bottom: 15px;
  align-items: center;
}

.footer-type {
  color: ghostwhite;
  font-size: 14px;
  font-family: "Helvetica", "Archivo", "Arial", sans-serif;
  font-weight: 700;
  display: inline-flex;
  padding-left: 4em;
}

#footer a:link {
  text-decoration: none;
  box-sizing: border-box;
  color: ghostwhite;
}

#footer a:visited {
  text-decoration: none;
  box-sizing: border-box;
  color: ghostwhite;
}

#footer a:hover {
  text-decoration: none;
  box-sizing: border-box;
  transition: 1 ease;
  color: rgb(83, 197, 229);
}

#footer a:active {
  text-decoration: none;
  box-sizing: border-box;
  color: ghostwhite;
}

.footer-social {
  display: inline-flex;
  padding-left: 2rem;
  letter-spacing: -4.5px;
  filter: brightness(2);
}

.social {
  filter: brightness(4);
}

.social:hover {
  filter: brightness(1);
}

.social-footer {
  filter: brightness(2);
}

.social-footer:hover {
  filter: brightness(.5);
}

/* COLUMN PROPERTIES ------------------------------- */

/* Three image containers (use 25% for four, and 50% for two, etc) */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2px;
  margin-right: -2px;
}

/* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
  float: left;
  width: 50%;
  box-sizing: border-box;
}

.container {
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr 1fr;
  margin-top: -2px;
  padding-bottom: 4px;
}


/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

  .column {
    flex: 100%;
    max-width: 100%;
  }

  .container {
    grid-template-columns: 1fr;
  }

  body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer {
    opacity: 0;
  }
  
  .footer-type {
    padding-left: 20px;
  }

  h1 {
    color: rgb(110, 110, 110);
    font-size: .7em;
  }
}