* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	background-color: transparent;
}
html {
    scroll-behavior: smooth;
}
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}
header {
    text-align: center;
    padding: 80px 20px;
    background-color: #111111;
}
section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}
h1 {
    font-size: 48px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #03a062;
	min-width: 300px;
}
h2 {
    font-size: 28px;
    color: #03a062;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: 1px solid #03a062;
    padding-bottom: 10px;
	min-width: 300px;
}
p {
    text-align: center;
	font-size: 18px;
    color: #aaaaaa;
    margin-top: 10px;
}
nav {
    background-color: #111111;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #03a062;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 16px 0;
    gap: 40px;
}
section ul{
    list-style: none;
    display: flex;
	flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    gap: 20px;
}
nav ul li a {
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
nav ul li a:hover {
    color: #03a062;
}
section div {
    background-color: #111111;
    border: 1px solid #03a062;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}
section div h3 {
    color: #03a062;
    font-size: 18px;
    margin-bottom: 10px;
}
section div:hover {
    background-color: #1a1a1a;
    transition: background-color 0.3s ease;
}
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #111111;
    border-top: 1px solid #03a062;
    color: #aaaaaa;
    font-size: 14px;
}
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    section {
        padding: 40px 16px;
    }
}
.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 12px;
    border: 3px solid #03a062;
    margin-bottom: 10px;
    object-fit: fill;
	flex-shrink: 0;
}

.typing {
    white-space: nowrap;
    overflow: hidden;
    font-size: 18px;
    color: #aaaaaa;
    display: inline-block;
    border: none;
	opacity: 0.9;
}
#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}
.contact-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
    margin-top: 30px;
}

.contact-icons a {
    color: #00ff99;
    font-size: 64px;
    transition: color 0.3s ease, transform 0.3s ease;
    width: fit-content;
}

.contact-icons a:hover {
    color: #ffffff;
    transform: scale(1.2);
}