/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #002074;
}

.container {
    /* Gradient from White to RGB 178, 178, 178 at a 135-degree diagonal */
    background: linear-gradient(135deg, #ffffff 0%, #7b7b7b 100%);
    
    width: 100%;
    max-width: 400px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 12px;

    /* This shorthand combines width, style, and color in one line */
    border: 5px solid #000000;
}

/* Profile Picture */
.profile-pic {
    width: 100%;
    max-width: 320px; /* Increased width */
    height: 180px;    /* Height of the oval */
    margin: 0 auto 25px auto;
    overflow: hidden;
    border-radius: 100px; /* Creates the oval/stadium effect */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the photo fills the oval without stretching */
    display: block;
}

/* Typography */
.name {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 25px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    text-transform: uppercase;
}

/* Buttons */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    background-color: #004182;
    color: #FFFFFF;
    text-decoration: none;
    padding: 15px;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #a0a0a0;
}

/* Footer */
.footer {
    margin-top: 30px;
    font-size: 0.75rem;
    color: #252525;
}
.image-container {
    width: 100%;
    max-width: 800px; /* Or whatever maximum size you want the image to be */
    padding: 20px;
    box-sizing: border-box;
}

img {
    max-width: 100%;  /* Scale down to fit the screen */
    height: auto;     /* Maintain aspect ratio */
    display: block;   /* Remove extra bottom spacing */
    margin: 0 auto;   /* Keep it centered */
}