body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #4facfe, #a958a5); /* Updated color scheme */
    color: white;
    text-align: center;
}

.container {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: justify; 
    line-height: 1.6; 
    margin: 40px;
    overflow-y: auto; 
    
}

@media (max-width: 1920px) {
    .container {
        max-height: 80vh; 
        margin: 20px; 
    }
}
.container p {
    margin-bottom: 1em; 
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

p {
    margin-bottom: 30px;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0px;
    margin-top: 20px;
    border: 3px solid white;
}

.buttons a {
    display: block;
    margin: 10px 0;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
    font-size: 1.1em;
}

.buttons a i {
    margin-right: 10px;
}

.buttons a:hover {
    background: white;
    color: #4facfe; /* Updated hover color to match */
}

.contact-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: white;
    color: #4facfe;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.3s, color 0.3s;
}

.contact-btn:hover {
    background: #4facfe;
    color: white;
}

.contact-email {
    margin-top: 10px;
    font-size: 1.1em;
    color: #ffffff;
    opacity: 0.8;
}