* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background-color: #171717;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
#canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}
.content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #4a4a4a;
}
h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
p {
    font-size: 1.2em;
    margin-bottom: 20px;
}
a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
a:hover {
    color: #2a6fbf;
}
@media (max-width: 768px) {
    .profile-img {
        width: 150px;
        height: 150px;
    }
    h1 {
        font-size: 2em;
    }
    p {
        font-size: 1em;
    }
}