@import url("https://fonts.googleapis.com/css2?family=Coming+Soon&family=Fredericka+the+Great&display=swap");
* {
  margin: 0;
}

main {
  margin: auto;
}

img {
  max-width: 100%;
}

.space {
  height: 140px;
}

h1, h3, h4 {
  font-family: "Fredericka the Great";
  font-weight: 400;
}

h2, p, ::placeholder, .btn, .name, .email, .message {
  font-family: "Coming Soon";
  font-weight: 400;
}

h1 {
  font-size: 5rem;
  margin-top: 10%;
}

h2, h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2rem;
}

p, a, .btn, .name, .email, .message {
  font-size: 1.5rem;
}

.alert, ::placeholder, .descrip {
  font-size: 1.15rem;
}

.color-dark {
  color: #38332F;
}

.color-white {
  color: #D4CDC2;
}

.color-green {
  color: #A9BF89;
}

.bg-color-dark {
  background-color: #38332F;
}

.bg-color-white {
  background-color: #D4CDC2;
}

.bg-color-darker {
  background-color: #211e1c;
}

.chapter {
  padding: 0px 10% 60px;
}

.btn {
  border: none;
  background-color: #38332F;
  color: #D4CDC2;
  border-radius: 10px;
  padding: 10px 20px;
  text-decoration: none;
}

.fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
.fixed nav {
  background-color: #D4CDC2;
  padding: 0 10%;
}
.fixed nav ul {
  display: flex;
}
.fixed nav ul li {
  list-style-type: none;
}
.fixed nav ul li a {
  padding: 5px 3px 10px;
  font-family: "Fredericka the Great";
  color: #38332F;
  text-underline-offset: 5px;
}
.fixed nav ul li :hover {
  background-color: #38332F;
  color: #D4CDC2;
  border-radius: 3px;
}
.fixed .alert {
  text-align: center;
  padding: 5px;
}

.home {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home h1, .home h2 {
  text-align: center;
}
.home img {
  align-self: center;
  margin-top: 32px;
  border-radius: 50%;
}

.projects {
  display: flex;
  flex-direction: column;
}
.projects .project-cards {
  display: flex;
  margin: 0 10%;
}
.projects .project-cards .project-card {
  border-radius: 10px;
  background-color: #38332F;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.25);
}
.projects .project-cards .project-card img {
  border-top-left-radius: 10px;
  max-width: 100%;
}
.projects a {
  margin: 3% 10% 0 auto;
}
.projects .btn {
  margin-bottom: 5%;
}

.skills-card {
  margin: 0 12%;
  padding: 0 0 40px;
}
.skills-card h4 {
  padding-bottom: 15px;
}
.skills-card .skills {
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
  border: 2px solid #D4CDC2;
  border-radius: 30px;
  padding: 30px;
}
.skills-card .skills div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contacts form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto 7% 10%;
}
.contacts form .name, .contacts form .email, .contacts form .message {
  background-color: #D4CDC2;
  border-radius: 10px;
  border: 2px solid #38332F;
  outline: none;
  padding: 10px;
}
.contacts form .submit {
  cursor: pointer;
}

footer .logo {
  padding: 20px 20px 0;
  display: flex;
  justify-content: space-between;
  max-width: 30%;
  margin: auto;
}
footer .logo img {
  width: 75px;
}
footer p {
  text-align: right;
  padding-right: 10px;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
  h2, h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  p, a, .btn {
    font-size: 1.25rem;
  }
  .alert, ::placeholder, .descrip {
    font-size: 1rem;
  }
  .home img {
    width: 205px;
  }
  .projects .project-cards {
    flex-direction: column;
    gap: 30px;
  }
  .projects .project-cards .project-card {
    display: flex;
  }
  .projects .project-cards .project-card img {
    border-bottom-left-radius: 10px;
    height: 200px;
  }
  .projects .project-cards .project-card p {
    padding: 20px;
  }
}
@media (min-width: 1025px) {
  .home img {
    width: 20%;
  }
  .projects .project-cards {
    justify-content: space-between;
  }
  .projects .project-cards .project-card {
    max-width: 28%;
  }
  .projects .project-cards .project-card img {
    border-top-right-radius: 10px;
  }
  .projects .project-cards .project-card p {
    padding: 10%;
  }
}
@media (max-width: 768px) {
  ul {
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 20px 0 15px;
  }
  ul li {
    padding-bottom: 15px;
  }
  ul li:last-child {
    padding-bottom: 0;
  }
  .about p {
    padding: 0 0 75px 13%;
    max-width: 75%;
    text-align: justify;
  }
  .skills-card .skills {
    padding: 20px;
    justify-content: space-between;
  }
  .skills-card .skills div {
    max-width: 100px;
    gap: 15px;
  }
  .skills-card .skills div p {
    font-size: 1rem;
  }
  .skills-card .skills div img {
    width: 50px;
  }
  .contacts form {
    margin: 0 10% 7%;
  }
}
@media (min-width: 769px) {
  ul {
    justify-content: space-between;
    padding: 25px 0 30px;
  }
  .about {
    background-image: url(/img/flowers-bg.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 25%;
  }
  .about p {
    padding: 0 0 75px 15%;
    max-width: 50%;
  }
  .skills-card .skills div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .skills-card .skills div img {
    width: 100px;
  }
  .contacts {
    background-image: url(/img/lemoii.png);
    background-repeat: no-repeat;
    background-position: 85% 80%;
    background-size: 350px;
  }
  .contacts form {
    max-width: 40%;
  }
}
@media (max-width: 576px) {
  .projects .project-cards {
    justify-content: space-between;
  }
  .projects .project-cards .project-card {
    flex-direction: column;
  }
  .projects .project-cards .project-card img {
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    height: auto;
  }
  .projects .project-cards .project-card p {
    padding: 10%;
  }
  .skills-card .skills div {
    max-width: 70px;
    gap: 15px;
  }
  .skills-card .skills div p {
    font-size: 0.75rem;
  }
  .skills-card .skills div img {
    width: 35px;
  }
}

/*# sourceMappingURL=style.css.map */
