/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #4a2e91, #9b59b6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

/* Header */
header {
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.highlight {
    color: #9b59b6;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.8);
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Sections */
main {
    max-width: 800px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

section {
    margin: 20px 0;
}

.info-section h2,
.projects-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #e1bee7;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 10px;
    font-size: 0.9rem;
    color: #ddd;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: rgba(155, 89, 182, 1);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    main {
        padding: 15px;
    }
}