/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header, footer {
    background: linear-gradient(135deg, #8ABAD3FF 0%, #E1E6FA 100%);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

section {
    padding: 20px 0;
    background: #E1E6FA;
    color: #333;
}

h1, h2 {
    color: #5B75A6;
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
}

footer {
    background: #5B75A6;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

footer h2 {
    margin-bottom: 20px;
}

#social {
    background: linear-gradient(135deg, #8ABAD3FF 0%, #E1E6FA 100%);
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

#social h2 {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 15px;
    color: #ffffff;
    font-size: 30px; /* Larger font size for better visibility */
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: #a9bdd6; /* Lighter blue for hover state */
    transform: scale(1.1); /* Slightly enlarge icons on hover */
}


.experience-item {
    margin-bottom: 20px;
}

.experience-period {
    font-style: italic;
    margin-bottom: 10px;
}

#hobbies {
    background: #E1E6FA;
    padding: 40px 0;
    color: #333;
}

.hobby-list {
    list-style: inside circle;
    padding: 20px;
}

.hobby-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-avatar {
    float: left;
    margin-right: 20px;
    width: 120px; /* Adjust the size as needed */
}

.profile-img {
    width: 100%; /* Makes the image fully responsive within the container */
    border-radius: 50%; /* Keeps the circular shape */
    display: block;
}

.about-text {
    overflow: hidden; /* Ensures the container wraps around floated elements */
}

/* You might need to adjust or add more styles depending on the overall design */
