/* styles.css */

body {
    font-family: 'Arial', sans-serif;
    margin: 20px;
    color: #333;
    background-color: #f5f5f5;
}

header {
    text-align: center;
    padding: 20px;
    background: url('link_world') center/cover no-repeat;
    color: #fff;
    filter: grayscale(30%);
}

.profile-image {
    border-radius: 50%;
    max-width: 200px;
    height: auto;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.profile-container:hover .profile-image {
    transform: translateY(-10px);
    background-color: #ff0000;
}

h1, p {
    margin-top: 10px;
}



header h1, header p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); 
    background: rgba(0, 0, 0, 0.5);
}

header p {
    font-size: 1.2em
}



section {
    margin-top: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #0066cc;
}




