@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
@keyframes text {
  0% {
    color: black;
    margin-bottom: -40px;
  }
  20% {
    letter-spacing: 10px;
    margin-bottom: 10px;
  }
  100% {
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

body {
  font-size: 10px;
  background-color: #f3f3f3;
}

.home {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.66) 100%, transparent), url("../img/home--background.jpeg");
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.home__container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -10px;
}

.home__container--profile img {
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  border: 4px solid #a9a9a9;
}

.home__container--info {
  text-align: center;
  width: 300px;
  color: #fff;
  height: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

.home__container--info h1 {
  font-family: "Lato";
  font-size: 25px;
  display: inline-block;
  font-weight: 400;
  animation: text 3s 1;
  position: relative;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.home__container--info h3 {
  font-family: "Lato";
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 18px;
  font-weight: 200;
}

.home__container--links {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.home__container--links .icon {
  padding: 8px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 15px;
}
.home__container--links .icon:hover {
  background-color: #a9a9a9 !important;
}
.home__container--links i {
  font-size: 28px;
  color: #24292E;
}
.home__container--links i:hover {
  color: #fff;
}
.home__container--links span {
  position: absolute;
  top: 60%;
  margin-top: 10px;
  padding: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.icon:hover {
  cursor: pointer;
}
.icon:hover:hover span {
  top: 90%;
  opacity: 0.9;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 800px;
  margin: 0 auto;
  height: 87vh;
}
@media screen and (max-width: 820px) {
  .contact {
    width: 100%;
  }
}
.contact__info {
  font-size: 1.5rem;
  padding-bottom: 3rem;
  text-align: center;
  font-family: "Lato";
}
.contact__info h1 {
  margin-bottom: 0.8rem;
}
.contact___containers {
  width: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 6rem;
}
@media screen and (max-width: 820px) {
  .contact___containers {
    font-size: 5rem;
  }
}
.contact___containers div {
  margin-left: 50px;
}
.contact___containers div:hover {
  filter: drop-shadow(#222222 5px 5px 5px);
}
@media screen and (max-width: 820px) {
  .contact___containers div {
    margin-left: 10px;
  }
}

.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
@media screen and (max-width: 600px) {
  .projects {
    padding: 30px;
  }
}
.projects__container {
  font-size: 1rem;
  padding: 20px;
  font-family: "Lato";
  font-weight: 500;
  line-height: 1.5;
  width: 500px;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .projects__container {
    width: 100%;
  }
}
.projects__container:hover {
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3);
}
.projects__container__header {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .projects__container__header {
    width: 100%;
    background-size: cover;
  }
}
.projects__container__header img {
  width: 100%;
  object-fit: contain;
  height: 200px;
}
@media screen and (max-width: 600px) {
  .projects__container__header img {
    object-fit: contain;
    width: 100%;
  }
}
.projects__container__content {
  margin-top: 1.5rem;
}
.projects__container__content p {
  text-align: justify;
}
.projects__container__buttons {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
}
.projects__container__buttons button {
  border: none;
}
.projects__container__buttons button a {
  display: inline-block;
  padding: 10px;
  width: 100px;
  background-color: #24292e;
  color: #fff;
  border-radius: 5px;
}

.projectName__overlay {
  background-color: black;
  opacity: 0.5;
  padding: 8px;
  color: #fff;
  position: absolute;
  top: 180px;
  width: 100%;
  left: 0;
}

.about {
  background-color: #f3f3f3;
  height: 87vh;
}
.about__header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem 0;
}
.about__header h4 {
  font-family: "Lato";
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: bolder;
}
.about__header h5 {
  font-family: "Lato";
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}
.about__contents {
  display: flex;
  padding: 0 5rem;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .about__contents {
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .about__contents {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .about__contents {
    padding: 0;
  }
}

.content {
  max-width: 500px;
}
.content__desc {
  font-family: "Lato";
  font-size: 1.1rem;
  text-align: justify;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 1100px) {
  .content__desc {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  .content__desc {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .content__desc {
    padding: 0 1rem;
  }
}
.content--video {
  width: 100%;
}

@media screen and (max-width: 1100px) {
  iframe {
    width: 400px;
    height: 250px;
  }
}
@media screen and (max-width: 1000px) {
  iframe {
    width: 500px;
    height: 300px;
  }
}
@media screen and (max-width: 500px) {
  iframe {
    width: 100%;
    height: 300px;
    padding: 0 1rem;
  }
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
}

nav {
  position: absolute;
  top: 0;
  width: 300px;
  height: 100vh;
  left: -300px;
  background-color: #fff;
  transition: 0.4s ease-out;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  z-index: 2;
}

input:checked ~ nav {
  left: 0;
}

input {
  display: none;
}

.side .side--header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.66) 100%, transparent), url("../img/home--background.jpeg");
  background-size: cover;
}

.side .close {
  position: absolute;
  top: 10;
  right: 10px;
}

.side .close i {
  font-size: 1.5rem;
  color: #fff;
}

.side--header__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.side--header__body img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
}

.side--body__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.side--header__body h3 {
  font-family: "Lato";
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.side--header__body p {
  font-family: "Lato";
  font-size: 0.8rem;
  font-weight: 200;
}

.side--footer {
  width: 100%;
  border-bottom: 2px solid #eee;
  padding-bottom: 1rem;
  background-color: #fff;
}

.side--navigation {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 1rem;
  width: 100%;
  margin: 0 auto;
  font-family: "Lato";
}

.side--navigation li {
  padding: 20px;
  width: 100%;
  margin-left: -100px;
  opacity: 0;
  transition: 0.8s ease-out;
}

input:checked ~ nav .side--navigation li {
  margin-left: 0;
  opacity: 1;
}

.side--navigation a {
  color: rgba(0, 0, 0, 0.87);
}

.side--navigation li a i {
  margin-right: 2rem;
  margin-left: 1rem;
  color: rgba(0, 0, 0, 0.87);
}

.side--navigation li:hover {
  background-color: #eee;
  text-decoration: underline;
}

.footer {
  background-color: #24292e;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4.1rem;
  color: #fff;
  font-size: 1rem;
  margin-top: 1rem;
  letter-spacing: 0.1em;
  font-family: "Lato";
}
@media screen and (max-width: 800px) {
  .footer {
    flex-direction: column;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  background-color: #24292e;
  height: 4rem;
  color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  z-index: 1;
}

.header .header--logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .header--logo label i {
  padding-left: 1.5rem;
  font-size: 1.5rem;
  margin-right: 1.5rem;
  color: #fff;
}

.header .header--logo a i:hover {
  color: #a9a9a9;
}

.header .header--logo h3 {
  font-family: "Lato";
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 1.5rem;
}

.header .header--logo--links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1.5rem;
}

.header .header--logo--links a {
  color: #fff;
}

.header .header--logo--links a:hover {
  color: #a9a9a9;
}

.header .header--logo--links i {
  font-size: 1.5rem;
  margin-right: 1.5rem;
}

@media screen and (max-width: 600px) {
  .header .header--logo h3 span {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .header .header--logo h3 {
    display: none;
  }

  .header .header--logo--links {
    margin-right: 0.5rem;
  }

  .header .header--logo--links i {
    font-size: 1.5rem;
    margin-right: 1rem;
  }
}

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