/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;  /* Remove any default margins */
    display: flex;
    flex-direction: column; /* Stack content vertically */
    min-height: 100vh;      /* Ensure body takes full height of viewport */
}

.container {
    flex: 1;                      /* Allow container to take remaining space */
    display: flex;
    flex-direction: column;
    justify-content: center;      /* Center container content vertically */
    align-items: center;          /* Center container content horizontally */
    text-align: center;
    padding-bottom: 20px;
}

.profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px; /* Centers the image and adds space below */
}

h1 {
    font-family: 'Times New Roman';
    font-size: 3em;
    margin: 20px 0 10px;
}

.bio {
    font-size: 1.2em;
    margin: 0 auto 50px;
    max-width: 800px;
    line-height: 1.5em;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;    
    gap: 20px;
}

.social-links a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-links a img:hover {
    transform: scale(1.1);
}

/* Footer Styling */
footer {
    background-color: #f0f0f0;
    color: #555;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    width: 100%;          /* Full width */
    box-sizing: border-box; /* Include padding in width calculation */
    margin-top: auto;      /* Push footer to the bottom if there's not enough content */
}
