body {
    background: linear-gradient(to right, #fc5c7d, #6a82fb);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.container:hover {
    transform: scale(1.05);
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

h2 {
    margin-top: 20px;
    font-size: 2em;
}

p, ul {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.name {
    font-weight: bold;
    margin-bottom: 20px;
}

.about-me {
    margin-bottom: 30px;
}

.skills, .projects {
    margin-top: 20px;
}

.skills ul, .projects ul {
    list-style-type: none;
    padding: 0;
}

.skills ul li, .projects ul li {
    margin-bottom: 10px;
}
