body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #a3c6e0;
    color: #333;
}

p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 120%;
    font-style: normal;
}
header {
    background: #a46088;
    color: white;
    text-align: center;
    padding: 10px;
}

nav {
    margin-top: 20px;
    background-color: #4aaab7;
}

.content img {
    width: 300px;      /* size barha diya */
    height: 300px;     /* same rakho for circle */
    object-fit: cover;

    border-radius: 50%;
    border: 6px solid white;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);

    display: block;
    margin: 0 auto 20px;
}
nav a {
    color: rgb(173, 13, 13);
    margin: 0 12px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #f1c40f;
}


.hero {
    background: linear-gradient(to right, #bab6c2d7, #bd107e);
    color: rgb(0, 0, 0);

    display: flex;
    flex-direction: column;
    justify-content: center;   /* vertical center */
    align-items: center;       /* horizontal center */

    text-align: center;
    padding: 60px 20px;
   
}


.content {
    width: 70%;
    margin: auto;
    background: rgb(183, 193, 130);
    padding: 40px;
    margin-top: -30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

    display: flex;
    flex-direction: column;

    align-items: flex-start;  /* center hatao */
    text-align: left;         /* text start se */
}


.center {
    text-align: center;
}

h2 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    display: inline-block;
    font-family: Georgia, 'Times New Roman', Times, serif;
}


.btn {
    display: inline-block;
    padding: 10px 18px;
    background: #1f2a38;
    color: white;
    text-decoration: none;
    margin-top: 15px;
    border-radius: 5px;
}

.btn:hover {
    background: #f1c40f;
    color: black;
}


ul {
    list-style-position: inside;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

footer {
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    background: #1f2a38;
    color: white;
}
