
body {
    background-color: #0d5e2b; /* deep green background */
    color: #bfa15f; /* gold color for text */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    border: 2px solid #bfa15f;
    border-radius: 16px;
    padding: 40px;
}

.profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #bfa15f;
    margin-bottom: 20px;
}

a {
    color: #bfa15f;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
