* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    cursor: url('c.png'), auto;
}

header {
    padding: 40px 0;
    text-align: center;
    animation: fadeIn 1s ease-in;
    cursor: url('c.png'), auto;
}

.profile-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #4CAF50;
    transition: transform 0.3s;
}

.profile-icon:hover {
    transform: scale(1.1);
    cursor: url('c.png'), auto;
}

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

h1 {
    margin: 10px 0 5px;
    font-size: 2.5em;
    animation: slideIn 0.5s forwards;
    opacity: 0;
}

h1 {
    animation-delay: 0.2s;
}

p {
    font-size: 1.2em;
}

section {
    background-color: #111;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease-in;
}

h2 {
    color: #4CAF50;
}

.skills ul {
    list-style-type: none;
    padding: 0;
}

.skills li {
    background-color: #222;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.skills li:hover {
    background-color: #4CAF50;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #222;
    color: white;
    cursor: url('c.png'), auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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