*,
html {
  scroll-behavior: smooth !important;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: #fde0c2;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .info {
    display: none;
  }
}

.container {
  width: 100%;
  height: 100svh;
  overflow: auto;
  scroll-snap-type: y mandatory;
}

.container > div {
  height: 100svh;
  scroll-snap-align: start;
}

.container > div .welcome_text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  font-family: "Courier New", Courier, monospace;
}
.container > div .welcome_text .typed-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container > div .welcome_text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}
.container > div .welcome_text p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
.container > div .welcome_text .scroll_down {
  margin-top: 15rem;
  cursor: pointer;
  filter: invert(1);
}

@media (max-width: 768px) {
  .container > div .welcome_text .scroll_down {
    margin-top: 8rem;
  }
}
@media (max-width: 768px) {
  .container > div .welcome_text .scroll_down {
    margin-top: 8rem;
  }
}
.container #over-me {
  position: relative;
}

.container #over-me > div {
  display: flex;
  height: 100%;
}

.container #over-me > div .img {
  width: 60%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.container #over-me > div .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 768px) {
  .container #over-me > div .img {
    display: none;
  }
}
.container #over-me > div .column {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.container #over-me > div .column .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container #over-me > div .column .text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.container #over-me > div .column .text p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.container #over-me > div .column .projects {
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.container #over-me > div .column .projects a {
  text-decoration: none;
  color: white;
  background-color: rgb(70, 88, 255);
  padding: 0.2rem;
  border-radius: 5%;
}
.container #over-me > div .column .projects a h2 {
  font-size: 2rem;
  text-align: center;
}

.container #over-me > div .column .projects > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  overflow: hidden;
}

.container #over-me > div .column .projects > div a img {
  width: 150px;
  height: 150px;
}

.container #contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container #contact > div {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.container #contact > div h2 {
  font-size: 3rem;
}

.container #contact > div > div {
  display: flex;
  flex-direction: column;
}

.container #contact > div > div a {
  display: flex;
  text-decoration: none;
  align-items: center;
  margin-top: 5px;
  font-size: 1.2rem;
  color: #333;
  transition: 0.3s ease-in-out;
}

.container #contact > div > div a:hover i {
  filter: invert(1);
}

.container #contact > div > div a i {
  transition: 0.3s ease-in-out;
  font-size: 2rem;
  margin-right: 1rem;
  background-color: #e7d2d2;
  padding: 0.2rem;
  border-radius: 50%;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

.navigator {
  z-index: 5;
  overflow: hidden;
  height: 150px;
  width: 50px;
  position: fixed;
  border-radius: 25px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin-left: 50px;
  top: 40%;
}

@media (max-width: 768px) {
  .navigator {
    display: none;
  }
}
.navigator a {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: #fde0c2;
  cursor: pointer;
}

.navigator a .bi {
  font-size: 1.3rem;
}

.justify-space-around {
  justify-content: space-around;
} 
.project-card {
  width: 250px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  padding: 1rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: transform 0.2s;
  margin-top: 1rem;
}
.project-card:hover {
  transform: translateY(-5px);
}
.project-card img {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
}
.project-card h3 {
  font-size: 1.25rem;
  color: #343a40;
  margin-top: 0.5rem;
}
.project-card p {
  font-size: 1rem;
  color: #6c757d;
}
.project-card .btn {
  margin-top: 0.5rem;
}

.content-projects {
  grid-column: 1/4;
  grid-row: 3;
  height: auto;
  top: 50px;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 15px;
}
.content-projects h2 {
  margin: 0;
  font-family: Monospace;
  font-size: 1.5rem;
  letter-spacing: -1px;
  margin-left: 15px;
  color: #d4aa00;
  font-weight: bold;
}

.project {
  border-radius: 15px;
  height: auto;
  padding-bottom: 20px;
  padding-top: 20px;
  float: left;
  background-color: rgb(230, 200, 168);
  width: 100%;
  color: #333;
}
.projects-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
  font-family: Monospace;
  margin-left: 15px;
  max-width: 250px;
}
.projects-text:hover {
  transform: translateY(0) scale(1) !important;
}
.project li {
  list-style: none;
  float: left;
  margin-left: 15px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.project li a {
  color: #333;
  text-decoration: none;
}
.project li a h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
  font-size: 1rem;
}
.project li a img {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  border: 2px solid #333;
  margin-top: 20px;
}
.project li:hover {
  transform: translateY(-15px) scale(1.05);
}
.project #go-back {
  color: #333;
}

.typed-container {
  display: flex;
}

#typed {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4aa00;
  font-family: Monospace;
  margin-left: 15px;
}

.typed-cursor {
  font-size: 1.5rem;
}/*# sourceMappingURL=styles.css.map */