* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FEF9E7; 
    color: #2b2b2b; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
   
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 2rem;
    width: 100%;
}

.profile-img {
    width: 260px;         
    height: 260px;         
    border-radius: 50%;    
    object-fit: cover;     
    margin-bottom: 1.5rem; 
    border: 3px solid #ffffff; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

p {
    color: #666; 
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 250px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #2b2b2b;
    background-color: #ffffff; 
    border: 1px solid #e2d9be; 
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.02); 
}

a:hover {
    background-color: #2b2b2b; 
    color: #ffffff;
    border-color: #2b2b2b;
    transform: translateY(-2px); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); 
}
