.navbar {
    display: flex; 
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 20px; 
    background-color: #1a181a;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
} 
ul.horizontal-list li {
    list-style: none;
    display: inline-block;
    padding: 10px 10px;
}
a {
    color: rgb(255, 255, 255);
    background-color: transparent;
    text-decoration: none;
    font-weight: bold;
  }
.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
    padding: 30px;
}
a.black {
    color: black;
    font-family: 'Courier New', Courier, monospace;
}
.sio {
    background-color: #efefef;
    padding: 20px;
    transition: background-color 0.5s, transform 0.3s;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.sio:hover {
    background-color: #2f2f2f;
    color: antiquewhite;
    transform: translateY(-4px);
}
.contacts:hover {
    background-color: #8b9af1;
}
.certifications {
    background-color: #ffe7f5;
    padding: 20px;
    transition: background-color 0.5s, transform 0.3s;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.certifications:hover {
    background-color: #301b23;
    color: rgb(255, 221, 253);
    transform: translateY(-4px);
}
.compétences {
    background-color: #d8ffec;
    padding: 20px;
    transition: background-color 0.5s, transform 0.3s;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.compétences:hover {
    background-color: #1b301c;
    color: rgb(221, 255, 221);
    transform: translateY(-4px);
}
.projets {
    background-color: rgb(41, 19, 82);
    color: wheat;
    padding: 20px;
    background-image: url('./darkspirals.png');
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-size: 100% 100%;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.container1 {
    display: grid;
    grid-template-rows: repeat(3, 1fr); 
    gap: 30px; 
    padding: 30px;
    text-align: center;
}
img {
    max-width:100px;
    max-height:100px;
}
.contacts {
    background-color: #ebe7ff;
    padding: 20px;
    transition: background-color 0.5s, transform 0.3s;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
a.black {
    color: black;
}
.phone {
    font-size: 50px;
    grid-area: a;
    align-self: center;
    justify-self: center;
}
.wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    grid-auto-rows: 200px;
    grid-template-areas:
      ". . . ."
      ". a a ."
      ". a a .";
  }
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(145deg, #f6f8ff 0%, #fff6fb 100%);
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-size: 200% 200%;
  }

  .certifications-path {
    grid-template-rows: none;
    grid-auto-rows: minmax(120px, auto);
  }

  .certification-card {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }

  .certification-card.pix {
    border-left: 6px solid #2b76ff;
  }

  .certification-card h2 {
    margin-top: 0;
  }

  @media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }
  }
