/* General styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f6fb;
    margin: 0;
    padding: 0;
    color: #222;
}

/* Header styles */
header {
    background: #2d3e50;
    color: #fff;
    text-align: center;
    padding: 2rem 0 1rem 0;
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

header u {
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

/* Main container */
div {
    background: #fff;
    max-width: 420px;
    margin: 2rem auto;
    padding: 2rem 2.5rem 2.5rem 2.5rem;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    text-align: center;
}

/* Profile image */
img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #2d3e50;
    margin-bottom: 1.2rem;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
}

/* Name */
h1 {
    font-size: 2rem;
    margin: 0.5rem 0 1rem 0;
    color: #2d3e50;
    letter-spacing: 1px;
}

/* Paragraphs */
p {
    font-size: 1.08rem;
    line-height: 1.6;
    margin: 0.7rem 0;
}

/* Skills */
#skills {
    background: #eaf1fb;
    color: #1a3a5d;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    font-weight: 500;
    margin-top: 1.2rem;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 600px) {
    div {
        padding: 1.2rem 0.7rem 1.5rem 0.7rem;
        max-width: 98vw;
    }
    header {
        font-size: 1.4rem;
        padding: 1.2rem 0 0.7rem 0;
    }
    img {
        width: 90px;
        height: 90px;
    }
}