:root {
  --bs-secondary-rgb: 199, 163, 229;
}
.btn-primary {
  --bs-btn-bg: #04baba;
}
body {
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}
header {
  background: #1c1d25;
}
a {
  text-decoration: none;
}
.navbar-bg {
  background: #1c1d25;
}
.navbar-toggler-icon {
  background: none;
}

.hero-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero {
  background-color: #1c1d25;
  height: 100vh;
  color: white;
  font-size: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.button {
  color: white;
  padding: 5px 10px;
  border-radius: 40px;
  background-color: #04baba;
  font-weight: 300;
  font-size: 30px;
}

.button:hover {
  background-color: #04a5a5;
}
.button:active {
  background-color: grey;
}

.subtext {
  font-size: 15px;
  font-weight: 300;
}
.socials {
  padding-bottom: 150px;
  margin-right: 30px;
}
.social-logo {
  height: 50px;
  margin: 20px;
}
.sub-section {
  display: flex;
  justify-content: space-around;
  padding: 60px;
}
.text-center {
  text-align: center;
  margin-bottom: 1rem;
}

.headshot-container {
  display: flex;
  align-items: center;
}

.headshot {
  width: 100%;
  height: auto;
  justify-items: left;
}

.information {
  padding: 2rem;
  display: grid;
  place-content: center;
}

hr {
  margin-left: 20px;
  margin-right: 20px;
}
.project-link {
  color: rgb(4, 186, 186);
  display: block;
}

.hamburger {
  display: none;
}
@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;
    margin: 0;
    padding-bottom: 40px;
  }

  nav {
    display: flex;
    flex-direction: column-reverse;
    background: #04baba;
  }
}
#contact {
  height: 400px;
  background: #1c1d25;
}
#contact h2 {
  color: white;
}

#contact p {
  color: white;
}
#contact a {
  margin-top: 1rem;
}

.skills-container {
  display: flex;
  justify-content: space-evenly;
}
.skills {
  width: 300px;
  background: #fefcff;
  box-shadow: 0px 5px 11px rgb(176, 173, 173);
  border-radius: 8px;
}
.skills ul {
  padding-left: 2rem;
}
.skills li {
  font-size: 24px;
  font-weight: 500;
  line-height: 3rem;
}
.bg-purple {
  background: #6f53d3;
}

#projects {
  margin-bottom: 3rem;
}
.img-bg {
  background-color: #04a5a5;
  width: 100%;
  aspect-ratio: 2 / 3;
}
.project-card h3 {
  margin: 1rem 0;
}
.projects-header {
  padding: 5rem;
}
.project-img {
  object-fit: cover;
  aspect-ratio: 2 / 1;
  object-position: top;
}
.project-container {
  gap: 30px;
  display: flex;
  justify-content: space-around;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1000px) {
  .project-container {
    display: flex;
    flex-wrap: wrap;
  }
}
.project-image {
  width: 150px;
}
.test {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
#contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#contact p {
  margin-bottom: 1rem;
}
footer {
  background: gray;
}
