@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

body {
  position: relative;
  font-family: 'Poppins', sans-serif;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)), url("/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  position: relative;
  width: 35rem;
  height: 85vh;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2rem);
  -webkit-backdrop-filter: blur(2rem);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

@media only screen and (max-width: 37.5em) {
  .container {
    width: 31rem;
  }
}

.container-about {
  width: 100%;
  height: 40%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 37.5em) {
  .container-about {
    padding: 1.5rem;
  }
}

.heading-name {
  margin-top: 1rem;
  font-family: inherit;
  font-size: 2.5rem;
  color: #F98404;
}

@media only screen and (max-width: 37.5em) {
  .heading-name {
    font-size: 2.2rem;
  }
}

small {
  margin: 1rem 0;
  font-size: 1.6rem;
  color: #ffe5e2;
  letter-spacing: .1rem;
}

@media only screen and (max-width: 37.5em) {
  small {
    margin: 0.8rem 0;
  }
}

small span {
  display: block;
  margin: 0.3rem 0;
  width: 100%;
  text-align: center;
}

.social-icons {
  width: 100%;
  margin: 0 auto;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media only screen and (max-width: 37.5em) {
  .social-icons {
    margin-top: 1rem;
  }
}

.fa {
  color: #fff;
  font-size: 2rem;
}

@media only screen and (max-width: 37.5em) {
  .fa {
    font-size: 1.8rem;
  }
}

.fa-facebook {
  color: #4267B2;
}

.fa-twitter {
  color: #00acee;
}

.fa-linkedin {
  color: #0e76a8;
}

.fa-instagram {
  color: #cd486b;
}

.fa-whatsapp {
  color: #25D366;
}

a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 1rem;
  margin: 0.5rem 1rem;
  font-size: 1.4rem;
  transition: all 0.3s linear;
  text-align: center;
}

a::before, a::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s linear;
}

.profile-pic {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
}

.profile-pic img {
  width: 100%;
}

.btn:checked ~ .container {
  transition: 0.5s all;
  filter: invert(1);
}

.btn:checked ~ .container small {
  filter: invert(1);
}

.btn:checked ~ .container img {
  filter: invert(1);
}

.btn:checked ~ .container .fa {
  filter: invert(1);
}

.btn {
  position: absolute;
  z-index: 3;
  width: 5rem;
  height: 2rem;
  outline: none;
  cursor: pointer;
  top: 3%;
  right: 3%;
  border-radius: 2.5rem;
  background-color: #fff;
  -webkit-appearance: none;
  transition: 0.5s;
}

input:checked[type="checkbox"] {
  background-color: #000;
}

input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  top: .1rem;
  left: .1rem;
  border-radius: 50%;
  background-color: #000;
  transition: .5s;
}

input:checked[type="checkbox"] {
  box-shadow: 0 0 10rem rgba(0, 0, 0, 0.1);
}

input:checked[type="checkbox"]::before {
  background-color: #fff;
  left: 3.1rem;
}

.bg-invert {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url("/bg.jpg");
}
/*# sourceMappingURL=main.css.map */
