body {
  font-family: "Changa", sans-serif;
  margin: 0;
  scroll-behavior: smooth;
}

section {
  background-color: white;
}
.hero {
  background-color: #0b0c10;
  height: 100vh;
  font-size: 40px;
  color: white;
}
footer {
  background-color: #0b0c10;
  color: white;
  text-align: center;
  padding: 80px;
}
nav {
  display: flex;
  justify-content: space-between;
}
ul {
  display: flex;
  list-style: none;
  width: 500px;
  justify-content: space-around;
  font-size: 30px;
}

.typing {
  animation: typing 3.5s steps(22, end), blink 1s step-end infinite;
  white-space: nowrap;
  overflow: hidden;
  border-right: 1px solid;
  font-family: Changa;
  letter-spacing: 0.8rem;
  margin: 0 auto;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  from,
  to {
    border-color: #0d19a3;
  }
  50% {
    border: blue;
  }
}
li {
  /* width: 200px; */
  text-decoration: none;
}
h1 {
  font-size: 90px;
  margin: 0;
}
h3 {
  font-size: 15pt;
  font-weight: 100;
}
h2 {
  font-size: 50px;
  margin: 0;
}
p {
  margin: 0;
  font-size: 30px;
  font-weight: 300;
}
.subtext {
  font-size: 15px;
  font-weight: 300;
  margin: 1rem;
}
.hero-area {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
.hero-text {
  margin-left: 80px;
  margin-bottom: 200px;
}
.button {
  width: 200px;
  height: 55px;
  background-color: #0d19a3;
  border-radius: 30px;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  padding-top: 5px;
  margin-top: 20px;
  padding-bottom: 5px;
}

.button:hover {
  background-color: #4285f4;
}

.button:active {
  background-color: #3500d3;
  color: #3500d3;
}
.contact-button {
  width: 200px;
  height: 55px;
  background-color: #0d19a3;
  border-radius: 30px;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 20px;
  margin: 0 auto;
  display: block;
}
.contact-button:hover {
  background-color: #4285f4;
}

.contact-button:active {
  background-color: #3500d3;
  color: #3500d3;
}
.socials {
  padding-bottom: 200px;
}

.logo {
  height: 80px;
  margin: 30px;
}

.social {
  margin: 20px;
}

.sub-section {
  display: flex;
  justify-content: space-around;
  padding: 80px;
}
.sub-section-alternative {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 80px;
}

.headshot {
  width: 250px;
  border-radius: 150px;
  margin-left: 80px;
}

.headshot-container {
  display: flex;
  align-items: center;
}
.project-card {
  width: 300px;
  height: 500px;
  box-shadow: 5px 5px 20px darkgrey;
  margin: 10px;
}
.project-container {
  display: flex;
  justify-content: space-around;
}
.project-image {
  margin-top: 25px;
  width: 250px;
  border-radius: 125px;
}
hr {
  margin-left: 20px;
  margin-right: 20px;
}

.project-link {
  text-decoration: none;
  color: #0d19a3;
}
a {
  text-decoration: none;
  color: white;
}

.hamburger {
  display: none;
}
.hamburger:focus {
  outline: 0;
}

@media only screen and (max-width: 1000px) {
  .hamburger {
    display: block;
    border: 0;
    background-color: transparent;
    color: white;
    font-size: 30px;
    margin: 20px;
    align-self: flex-end;
  }
  ul {
    display: none;
    background-color: #0d19a3;
    margin: 0px;
  }
  nav {
    display: flex;
    flex-direction: column-reverse;
    background-color: #0d19a3;
  }
  ul.show {
    display: block;
  }
  .logo {
    display: none;
  }
}

@media only screen and (max-width: 1000px) {
  .project-container {
    display: flex;
    flex-wrap: wrap;
  }
}
