body {
    font-family: 'Roboto', sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    line-height: 1.6;
    margin: 0;
    padding: 2rem;
    background: #000;
    color: #fff;
    text-align: center;
}

.container {
    max-width: 600px;
    margin: auto;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    color: #888;
}

section {
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-in-out;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.tech-icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.tech-icons img:hover {
    transform: scale(1.2);
}

em {
    font-style: oblique 20deg;
}

a {
    color: #fff;
    transition: color 0.3s ease;
}

a:hover {
    color: #0072ff;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    margin: 0 1rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0072ff;
}

footer {
    margin-top: 4rem;
    color: #888;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}