/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column; /* Added for vertical centering */
    align-items: center; /* Center items horizontally */
    min-height: 100vh; /* Ensures body takes full height */
    padding: 20px;
    background-color: #fff;
}

.container {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

/* Profile section */
.profile {
    display: flex;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border: 2px solid #333;
    margin-right: 20px;
    object-fit: cover;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-title {
    font-size: 1.5em;
    font-weight: bold;
}

.profile-name {
    font-size: 1.2em;
    color: #666;
}

.social-icons {
    margin-top: 5px;
}

.social-icons a {
    margin-right: 5px;
}

.social-icons img {
    height: 20px;
    transition: transform 0.2s ease; /* Add transition for social icons */
}

.social-icons a:hover img {
    transform: scale(1.2); /* Increase size on hover */
}

.intro {
    text-align: left;
    max-width: 500px;
    margin-top: 30px;
}

.intro h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.intro p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px; 
}

.resume-button {
    display: inline-block;
    background-color: black; 
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s ease, background-color 0.2s ease; /* Apply transition here */
}

.resume-button:hover {
    transform: scale(1.05); /* Increase size on hover */
}