/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.circle-image {
    width: 200px; /* You can adjust the size */
    height: 200px; /* Keep width & height same for perfect circle */
    border-radius: 50%;
    object-fit: cover; /* Ensures image covers the circle area */
    border: 4px solid white; /* Optional: white border around circle */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Optional: shadow effect */
    transition: transform 0.3s ease;
}

.circle-image:hover {
    transform: scale(1.1);
}

/* Body Styling */
body {
    font-family: 'Cursive', Arial, sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-family: 'Cursive', sans-serif;
    font-size: 3em;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.subtitle {
    font-style: italic;
    font-size: 1.5em;
    color: #ffea00;
}

/* About Section */
.about {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    width: 80%;
}

/* Projects Section */
.projects {
    text-align: center;
    margin-bottom: 30px;
}

.project-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.project {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.project:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.4);
}

/* Footer */
footer {
    margin-top: auto;
    font-style: italic;
}