@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,400;0,700;1,400");
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

body {
  font-family: "Barlow", sans-serif;
}

@keyframes shake {
  from {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(5deg);
  }
}
@keyframes slider {
  0% {
    transform: translateX(-100px);
  }
}
.header a img {
  width: 48px;
  height: 64px;
  animation-name: slider;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.landing .landing-info img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #1F271B;
}

.footer-links img {
  width: 64px;
  height: 64px;
}

.portfolio-card img {
  width: 75vw;
}

@media screen and (min-width: 800px) {
  .landing .landing-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .landing .landing-info img {
    width: 350px;
  }
  .portfolio-card img {
    width: 500px;
  }
}
.header {
  background-color: #a8a6a3;
  padding: 1rem 0.5rem;
}

.nav-bar {
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.nav-bar li {
  text-align: center;
  border-bottom: 0.2rem solid rgb(214, 209, 209);
  width: 100%;
  padding: 0.5rem;
}
.nav-bar li a {
  text-decoration: none;
  color: #1F271B;
}

nav {
  margin-bottom: 2rem;
}

@media screen and (min-width: 800px) {
  .nav-bar {
    flex-direction: row;
    margin-top: 16px;
  }
  .nav-bar li {
    border-top: 0.2rem solid rgb(214, 209, 209);
  }
}
.landing {
  width: 80vw;
  margin: 0 auto 1rem auto;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgb(214, 209, 209);
}
.landing .landing-info h3 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  font-weight: 100;
}
.landing .landing-info p {
  margin: 0.5rem 0;
  text-align: center;
}
.landing .lg-background {
  background-color: #e2dede;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
}
.landing .lg-background p {
  margin-bottom: 1rem;
}

.landing-action-container {
  display: flex;
  justify-content: center;
}
.landing-action-container a {
  display: inline-block;
  text-align: center;
  background-color: #a8a6a3;
  padding: 16px 8px;
  border-radius: 4px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 20px;
}

@media screen and (min-width: 800px) {
  .landing .container {
    display: flex;
    gap: 20px;
  }
  .landing .container .landing-info {
    flex: 1;
  }
}
.footer {
  background-color: #a8a6a3;
}
.footer .footer-links {
  margin: 0 auto;
  list-style-type: none;
  padding: 1rem 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.footer .footer-links li {
  animation-name: shake;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
}

.portfolio-cards {
  text-align: justify;
  color: #4f6345;
}
.portfolio-cards h1 {
  margin: 1rem 0;
  font-size: 24px;
  font-weight: 100;
  text-decoration: underline;
}
.portfolio-cards .portfolio-card {
  border: 1px solid #1F271B;
  width: 95vw;
  margin: 0 auto;
  padding: 16px 0;
  border-radius: 4px;
  margin-bottom: 16px;
}
.portfolio-cards .portfolio-card img {
  margin: 1rem 0;
  border-radius: 4px;
}
.portfolio-cards .portfolio-card span {
  font-style: italic;
}

@media screen and (min-width: 800px) {
  .portfolio-cards {
    display: flex;
    flex-wrap: wrap;
  }
  .portfolio-cards .portfolio-card {
    border: none;
    width: unset;
  }
}/*# sourceMappingURL=main.css.map */