
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Julius Sans One', sans-serif;
}

body {
    background-color: #0e0e0e;
    color: #f5f5f5;
    line-height: 1.6;
}

main {
    padding-top: 85px;
}

.perm-header {
    position: relative;
    height: 75px;
    width:100%;
    background-color: hsla(44, 22%, 94%, 0.7);
}

.page-links {
    display: flex;
    justify-content: space-evenly;
    height: 100%;
}

.page-links li {
    display: flex;
    align-items: center;    /* vertical centering ✅ */
    justify-content: center; /* optional: horizontal centering */
    height: 100%;
    font-size: 35px;
}

.page-links a {
    display: flex;
    height: 100%;
    text-decoration: none;
    color: #000;
    align-items: center;
}

.page-links a:hover {
    color: #00ffff;
    transform: scale(1.3);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    align-items: center;
}

.about-container h3 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.skill-title {
    text-align: center;
    align-items: center;
}

.profile-pic {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,255,255,0.5);
    margin-bottom: 10px;
}

.info-section {
    text-align: center;
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(0,255,255,0.5);

}

.info-section h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.info-section h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
}

.skill-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.skill-button {
    flex: 0 0 auto;
    background-color: #1e1e1e;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid #00ffff;
    color: #00ffff;
    font-weight: bold;
    box-shadow: 0 0 10px #00ffff55;
}

.card-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.card {
    flex: 1 1 300px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,255,255,0.2);
}

.intro p {
    margin-bottom: 10px;
}


footer {
    background-color: hsla(44, 22%, 94%, 0.7);
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

footer i {
    transition: transform 0.3s;
    margin: 7px;
    font-size: 50px;
}

.links {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap:20px;
    font-size:18px;
}

.links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size:18px;
}

.links a:hover {
    color: #00ffff;
}

.links a:hover i {
    transform: scale(1.3);
    color: #00ffff;
}
