*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
      list-style: none;
      text-decoration: none;
}
body {
    background-color: hsl(210, 36%, 96%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    color: #000;

}
header {  position: fixed;
  top: 0;
     margin: 0 auto;
    background-color: hsl(0, 100%, 100%);
   max-width: 50%;
    max-height: 50px;
   padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.54);
      position: fixed;
 
  left: 50%;
  transform: translateX(-50%);
    
}
header nav ul {
  
    display: flex;
    gap: 30px;
}
header nav ul {
  
    display: flex;
    gap: 20px;
}
header nav ul li a {
    
     color: #000;
    font-size: 15px;
    font-weight:bold;
    transition: color 0.3s ease;
}
header nav ul li a:hover {
    color: hsl(207, 72%, 41%);
}
main section:first-of-type {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
main section div {
    margin: 20px auto;
    padding: 20px;
    max-width: 700px;
    max-height: auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}
main section div .container-text {
   
    font-size: 20px;
    display: flex;
    flex-direction: column;
}
main section div .container-image img {
   width: 300px;
    height: 300px;
    border-radius: 5%;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

main .sobre-mim {
padding: 120px 0;


    
   
    
   
}
main .sobre-mim h1{
    font-size: 20px;
    text-align: center;
}

main .sobre-mim .container-sobre{
     padding-top: 80px;
     margin: 20px auto;
    padding: 20px;
    max-width: 700px;
    max-height: auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}
main .sobre-mim .container-sobre .container-image-sobre img{
    width: 200px;
    height: 200px;
    border-radius: 5%;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

main .projetos  .container-projetos{
    
    max-width: 300px;
    max-height: auto;
    background-color: white; 
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
     display: flex;
     padding: 15px;
     flex-direction: column;
}

main .projetos  .container-projetos .card-projeto img{
    width: 200px;
    height: 200px;
    border-radius: 5%;
    object-fit: cover;
}
main .projetos  .container-projetos p{
    font-size: 15px;
}

main .projetos  .container-projetos button a{
    background-color: #000;
    color: #fff;
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-radius:7px ;
    padding: 7px;
}
main .projetos h1{
    font-size: 20px;
    text-align: center;
}

.habilidades {
  padding: 120px 0;
  text-align: center;
}
.habilidades h1 {
  font-size: 20px;
}
.container-habilidades {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.card-habilidade {
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.card-habilidade img {
  width: 60px;
  height: 60px;
}

.card-habilidade p {
  font-size: 14px;
  font-weight: bold;
}

.footer {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
  margin-top: 100px;
}

.footer p {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.footer-links a {
  color: #000;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: hsl(207, 72%, 41%);
}
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: hsl(210, 36%, 96%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}


#splash.hide {
  opacity: 0;
  pointer-events: none;
}

#splash h1 {
  font-size: 32px;
}

#splash p {
  font-size: 16px;
  opacity: 0.7;
}

.logo-java {
  width: 80px;
  margin-bottom: 20px;
}

.splash-socials {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 20px;
}

.splash-socials img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.splash-socials img:hover {
  transform: scale(1.15);
}
