@import url("https://fonts.googleapis.com/css2?family=Raleway:ital@0;1&family=Roboto+Slab:wght@100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.closed {
  position: fixed;
  top: 0;
  left: 0;
  justify-content: space-between;
  height: 10vh;
  max-height: 120px;
  padding: 0 40px;
  width: 100vw;
}

header {
  display: flex;
  align-items: center;
  z-index: 999;
  transition: background-color 0.3s ease;
}
header #guilherme {
  width: 400px;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
}
header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header ul {
  display: flex;
  gap: 50px;
  list-style: none;
  text-align: center;
  align-items: center;
}
header ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  position: relative;
  display: inline-block; /* Ensures the underline only spans the text */
}
header ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}
header ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
header #menu-button {
  display: none;
  background-color: none;
  border: none;
  color: white;
  width: 60px;
}

.transparent {
  background-color: none;
  color: #232323;
}

.scrolled {
  background-color: #232323;
}

footer {
  height: 200px;
  z-index: 2;
  width: 100vw;
  color: white;
}
footer p {
  padding-top: 100px;
  padding-left: 20px;
}

body {
  overflow-x: hidden;
}

@media screen and (max-width: 910px) {
  .no-scroll {
    overflow: hidden;
  }
  .open-header {
    padding: 5vh 0px;
    position: fixed;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: space-between;
    background-color: #232323;
  }
  .open-header #guilherme {
    text-align: center;
  }
  .open-header #menu-button {
    padding-bottom: 10vh;
  }
  header .menu-closed ul {
    display: none;
  }
  header .menu-open ul {
    display: flex;
    flex-direction: column;
  }
  header #menu-button {
    display: block;
  }
}
#glow {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #f0a500;
  border-radius: 50%;
  box-shadow: 0 0 20px 10px #f0a500, 0 0 50px 20px rgba(240, 165, 0, 0.7), 0 0 100px 40px rgba(240, 165, 0, 0.3);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
  filter: blur(10px);
  z-index: -100;
}

@media screen and (max-width: 910px) {
  #glow {
    display: none;
  }
}
* {
  margin: 0px;
  padding: 0px;
}

body {
  background-color: #232323;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: black;
}

#aboutme {
  padding-top: 30vh;
  text-align: center;
  z-index: 2;
}
#aboutme h2 {
  font-size: 2.5rem;
  color: #f0a500;
  margin-bottom: 20px;
}
#aboutme p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
  color: white;
}
#aboutme .social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  max-width: 600px;
  margin: 0 auto;
}
#aboutme .social-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#aboutme .social-grid a:hover {
  transform: scale(1.4);
}

@media (max-width: 768px) {
  #aboutme {
    padding-top: 20vh;
  }
  #aboutme h2 {
    font-size: 2rem;
  }
  #aboutme p {
    font-size: 1rem;
    max-width: 90%;
  }
  #aboutme .social-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  #aboutme {
    padding-top: 15vh;
  }
  #aboutme h2 {
    font-size: 1.75rem;
  }
  #aboutme p {
    font-size: 0.9rem;
  }
  #aboutme .social-grid {
    padding-top: 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}/*# sourceMappingURL=aboutme.css.map */