html {
  scroll-behavior: smooth;
}

body, h1, h2, p, nav, ul, li {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Regular.ttf");
}
h1 {
  text-transform: uppercase;
  font-family: "Bebas Neue";
  font-size: 80px;
  letter-spacing: 1rem;
}

h2 {
  text-transform: uppercase;
  font-family: "Bebas Neue";
  font-size: 25px;
  letter-spacing: 0.3rem;
}

h3 {
  font-family: "Bebas Neue";
  letter-spacing: 0.3rem;
  margin-top: 3rem;
  padding-top: 0.5rem;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 25px;
  color: #fff;
  letter-spacing: 0.3rem;
}
a:hover {
  text-decoration: underline;
  opacity: 0.6;
}

li {
  font-family: "Bebas Neue";
}

section {
  padding: 5rem;
}

footer {
  padding: 2rem 5rem;
}

header {
  padding: 2rem;
}

p, a, li, h1, h2 {
  line-height: 1.5;
}

@media (max-width: 700px) {
  h1 {
    font-size: 40px;
    letter-spacing: 0.3rem;
  }

  h2 {
    font-size: 18px;
  }

  p {
    font-size: 15px;
  }

  a {
    font-size: 18px;
  }

  section, header, footer {
    padding: 1rem;
  }
}
header {
  background: #CFB9AB;
}
header img {
  display: none;
}
header nav {
  display: flex;
  justify-content: flex-end;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
}
header nav ul li {
  list-style: none;
}

@media (max-width: 700px) {
  .front-page {
    padding-left: 0;
    padding-right: 0;
    padding-top: 3rem;
  }
  .front-page img {
    display: inline;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }
  .front-page img:hover {
    cursor: pointer;
  }
  .front-page .toggle {
    display: none;
  }
  .front-page nav {
    justify-content: center;
    margin-top: 1rem;
    background: #494949;
    padding: 1rem;
  }
  .front-page nav ul {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}
.hero {
  display: flex;
  justify-content: right;
  background: #CFB9AB;
  color: #fff;
  position: relative;
  padding-top: 2rem;
}
.hero .welcome {
  width: 60%;
  padding-right: 1rem;
  position: absolute;
  top: 5rem;
  left: 5rem;
}
.hero .welcome h2 {
  width: 40%;
}
.hero .welcome a {
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: underline;
}
.hero .hero-img {
  width: 70%;
}
.hero .hero-img img {
  width: 100%;
  height: auto;
}

@media (max-width: 700px) {
  .hero {
    flex-direction: column;
  }
  .hero .welcome {
    width: 100%;
    top: 0;
    left: 0;
    position: relative;
  }
  .hero .welcome h2 {
    width: 100%;
  }
  .hero .hero-img {
    padding-top: 1rem;
  }
}
#about {
  display: flex;
  flex-direction: row;
}
#about .about-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  width: 60%;
  padding-right: 2rem;
}
#about .about-container .information h1 {
  color: #CFB9AB;
}
#about .about-container .aboutme p {
  padding-bottom: 1rem;
}
#about .about-container .aboutme p a {
  color: #000;
  text-decoration: underline;
  text-transform: capitalize;
  letter-spacing: inherit;
  font-size: inherit;
}
#about .about-container .aboutme .socialicons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
#about .about-container .aboutme .socialicons img {
  width: 2.5rem;
}
#about .timeline-container {
  width: 40%;
}
#about .timeline-container .timeline {
  display: flex;
  flex-direction: row;
  padding: 1rem 0;
  gap: 1rem;
}
#about .timeline-container .timeline .icon {
  width: 2.5rem;
}
#about .timeline-container .timeline .icon img {
  width: 100%;
}
#about .timeline-container .timeline .information .time {
  color: #CFB9AB;
}

@media (max-width: 700px) {
  #about {
    flex-direction: column;
  }
  #about .about-container {
    width: 100%;
    gap: 1rem;
    padding-right: 0;
  }
  #about .timeline-container {
    width: 100%;
  }
}
#skills {
  background: #ECE3DE;
}
#skills h2 {
  margin: 1rem 0;
}
#skills .skills-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
#skills .skills-container .bar {
  padding: 0.5rem;
  border-radius: 5rem;
}
#skills .skills-container .possible {
  width: inherit;
  position: relative;
  background: #fff;
}
#skills .skills-container .progress {
  position: absolute;
  background: #CFB9AB;
  top: 0;
  left: 0;
}

@media (max-width: 700px) {
  #skills .skills-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
#projects .section-description {
  display: flex;
  flex-direction: row;
  margin-bottom: 1rem;
}
#projects .section-description .heading {
  width: 60%;
}
#projects .section-description .text {
  width: 40%;
}
#projects .project-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
#projects .project-container .one-project {
  background-color: #DBDBDB;
  padding: 1rem;
  text-align: center;
}
#projects .project-container .one-project img {
  width: 100%;
}
#projects .project-container .one-project a {
  color: #000;
}

@media (max-width: 700px) {
  #projects .section-description {
    flex-direction: column;
  }
  #projects .section-description .heading {
    width: 100%;
  }
  #projects .section-description .text {
    width: 100%;
  }
  #projects .project-container {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
    gap: 1rem;
  }
  #projects .project-container .one-project {
    padding: 0.5rem;
  }
}
#contact {
  background: #CFB9AB;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#contact .information {
  width: 60%;
}
#contact .information h1 {
  color: #fff;
}
#contact .contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 40%;
}

@media (max-width: 700px) {
  #contact {
    flex-direction: column;
  }
  #contact .information {
    width: 100%;
  }
  #contact .contact-detail {
    margin-top: 1rem;
    width: 100%;
    gap: 1rem;
  }
}
footer {
  background: #494949;
  color: #fff;
  display: flex;
  flex-direction: row;
}
footer .information {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .navigation {
  width: 40%;
}
footer .navigation li {
  list-style: none;
}
footer .navigation li a {
  color: #CFB9AB;
}
footer .top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
}
footer .top:hover {
  opacity: 0.5;
}
footer .top img {
  width: 2em;
  height: auto;
}

@media (max-width: 700px) {
  footer {
    flex-direction: column;
    gap: 1rem;
  }
  footer .information {
    width: 100%;
  }
  footer .navigation {
    width: 100%;
  }
}
.description {
  display: flex;
  flex-direction: row;
  gap: 4rem;
}
.description .introduction {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.description .introduction .tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  text-transform: uppercase;
  align-items: center;
  gap: 1rem;
  cursor: default;
}
.description .introduction .tags p {
  color: #CFB9AB;
  border: 2px solid #CFB9AB;
  padding: 0.2rem 0.5rem;
}
.description .introduction p {
  margin-top: 0.5rem;
}
.description .introduction p a {
  color: #000;
  text-decoration: underline;
  text-transform: capitalize;
  letter-spacing: inherit;
  font-size: inherit;
}
.description .project {
  width: 40%;
  padding-left: 1rem;
  border-left: 4px solid #CFB9AB;
  align-self: center;
}

@media (max-width: 700px) {
  .description {
    flex-direction: column;
    gap: 1rem;
  }
  .description .introduction {
    width: 100%;
    gap: 1rem;
  }
  .description .introduction .tags {
    gap: 0.5rem;
  }
  .description .project {
    width: 100%;
    border-left: none;
    padding-left: 0;
    border-top: 2px solid #CFB9AB;
    padding-top: 1rem;
  }
}
.impressions .galery {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}
.impressions .galery .image {
  width: 100%;
}
.impressions .galery .image img {
  width: 100%;
}

@media (max-width: 700px) {
  .impressions .galery {
    gap: 1rem;
  }
}

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