body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

a {
  color: #ffffff;
}

.button {
  cursor: pointer;
}

.dark {
  background-color: #2B3A55;
  color: #ffffff;
}

.pink {
  background-color: #CE7777;
  color: #ffffff;
}

.show {
  display: inline-block;
}

.hide {
  display: none;
}

.highlight {
  color: #E8C4C4;
}

.highlight2 {
  color: #CE7777;
}

.text-white {
  color: #FFFFFF;
}

.huge-text {
  font-size: 100px;
}

.big-text {
  font-size: 36px;
}

.small-text {
  font-size: 12px;
}

#root {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#root .home, #root .display {
  height: 100vh;
}

.display {
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: 1s all ease;
}

.display.active {
  transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 940px) {
  #root .home, #root .display {
    height: fit-content;
  }
}
.nav-bar-wrapper {
  padding: 20px 36px;
  width: calc(100% - 72px);
  font-size: 30px;
  position: fixed;
  z-index: 1;
  background-color: rgba(43, 58, 85, 0.8);
}
.nav-bar-wrapper .nav-bar {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.nav-bar-wrapper .nav-bar .name {
  color: white;
  text-decoration: none;
}
.nav-bar-wrapper .nav-bar .name .lastname {
  font-weight: 100;
}

.home {
  width: 100%;
  display: flex;
  padding: 0px 120px;
  flex-direction: row;
  justify-content: center;
}
.home .home-content {
  height: 100%;
  width: calc(100% - 240px);
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  gap: 40px;
}
.home .home-content .description {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  gap: 40px;
  font-size: 50px;
}
.home .home-content .description .greeting {
  font-family: "Space Mono", monospace;
  display: flex;
  flex-direction: column;
  justify-content: left;
}
.home .home-content .description .greeting .tag {
  color: #CE7777;
}
.home .home-content .description .greeting .tag .fake-space {
  font-size: 1px;
}
.home .home-content .description .greeting .hello {
  padding-left: 36px;
}
.home .home-content .description .icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.home .home-content .description .icons img {
  width: 60px;
  cursor: pointer;
}
.home .home-content .description .photo {
  display: contents;
}

@media screen and (max-width: 940px) {
  .home .home-content {
    padding-top: 76px;
    padding-left: 0px;
    width: calc(100% - 40px);
    flex-direction: column;
    gap: 50px;
  }
  .home .home-content .description {
    width: 100%;
    gap: 30px;
    font-size: 40px;
  }
  .home .home-content .description .icons {
    padding-bottom: 30px;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .home .home-content .description .icons img {
    width: 40px;
    cursor: pointer;
  }
  .home .home-content .description .photo img {
    width: 80%;
    max-width: 400px;
  }
}
.about {
  background-color: #E8C4C4;
  padding: 36px 100px;
  width: calc(100% - 200px);
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  gap: 40px;
}
.about .pictures {
  width: calc(50% - 100px);
  min-width: 400px;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
}
.about .pictures img {
  width: 100%;
}
.about .info {
  width: calc(50% - 40px);
  min-width: 300px;
  font-size: 12px;
  padding: 10px;
  text-align: center;
  background-color: rgba(43, 58, 85, 0.6);
  border-radius: 5px;
}

@media screen and (max-width: 940px) {
  .about {
    padding: 50px 20px;
    width: calc(100% - 40px);
    flex-direction: column;
    gap: 50px;
  }
  .about .pictures {
    width: calc(100% - 20px);
    min-width: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
  }
  .about .pictures img {
    width: 100%;
  }
  .about .info {
    width: calc(100% - 20px);
    min-width: 100px;
  }
}
.projects {
  background-color: #E8C4C4;
  padding: 36px 100px;
  width: calc(100% - 200px);
  display: grid;
  flex-direction: column;
  align-items: center;
  align-content: center;
  gap: 40px;
}
.projects .project-2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 48px;
}
.projects .project-2 div {
  width: 300px;
}
.projects .project-2 div a {
  color: #2B3A55;
}

@media screen and (max-width: 900px) {
  .projects {
    padding: 20px 80px;
    width: calc(100% - 160px);
    flex-direction: column;
    gap: 80px;
  }
}
.resume-view {
  padding: 76px 120px 36px 120px;
  width: calc(100% - 240px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.resume-view .resume-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.resume-view .resume-wrapper .resume {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  gap: 20px;
}
.resume-view .resume-wrapper .resume .resume-brief {
  width: calc(100% - 20px);
  padding: 16px;
  height: fit-content;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  color: white;
  background-color: rgba(43, 58, 85, 0.6);
  border: 2px solid #2B3A55;
  border-radius: 5px;
  opacity: 0.7;
}
.resume-view .resume-wrapper .resume .selected {
  opacity: 1;
}
.resume-view .resume-wrapper .selected-description .resume-details {
  background-color: rgba(43, 58, 85, 0.6);
  border-radius: 5px;
  padding: 16px;
}
.resume-view .resume-wrapper .selected-description .resume-details ul > li {
  line-height: 30px;
  font-size: 20px;
}
.resume-view .resume-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 36px;
}

#balls-map {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
}
#balls-map .ball {
  cursor: pointer;
  background-color: #E8C4C4;
  width: 24px;
  height: 24px;
  border-radius: 24px;
}
#balls-map .selected {
  background-color: #CE7777;
}

#accomplishments {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#accomplishments div {
  padding: 8px;
  color: #E8C4C4;
  font-size: 24px;
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 940px) {
  .resume-view {
    padding: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
  }
  .resume-view .resume-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 20px;
  }
  .resume-view .resume-wrapper .resume {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 20px;
  }
  .resume-view .resume-wrapper .resume .resume-brief {
    width: calc(100% - 32px);
    opacity: 0.5;
  }
  .resume-view .resume-wrapper .resume .selected {
    display: none;
    padding: 16px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    color: white;
    background-color: rgba(43, 58, 85, 0.6);
    border: 2px solid #CE7777;
    opacity: 1;
  }
  .resume-view .resume-wrapper .resume :not(.selected) .small-text {
    color: #CE7777;
    font-size: 16px;
  }
  .resume-view .resume-wrapper .resume :not(.selected) .big-text, .resume-view .resume-wrapper .resume :not(.selected) .company-info {
    display: none;
  }
  .resume-view .resume-wrapper .selected-description .resume-details {
    background-color: rgba(43, 58, 85, 0.6);
    border: 2px solid #CE7777;
    border-radius: 5px;
    padding: 8px 8px 8px 2px;
    height: 300px;
    overflow-y: scroll;
  }
  .resume-view .resume-wrapper .selected-description .resume-details ul > li {
    line-height: 30px;
    font-size: 20px;
  }
}
.menu {
  height: 100%;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.menu .vertical-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 36px;
}
.menu .vertical-menu a {
  color: white;
  text-decoration: none;
}
.menu .vertical-menu a:hover {
  color: #2B3A55;
}

.footer {
  background-color: rgba(43, 58, 85, 0.8);
  width: 100%;
  bottom: 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 16px;
  padding-bottom: 10px;
  padding-top: 10px;
  position: fixed;
}
.footer div {
  height: 30px;
}

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