body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


.container h2 {
    color: #333;
    margin-top: 20px;
    font-size: 1.25em;
}

.resume-sections {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-left: 40%;
}

#education, #experience, #Education, #skills {
    text-align: left;
    margin: 15px 0;
    width: 100%;
}

#education p, #experience p, #Education p, #skills p {
    margin-left: 15px;
    font-size: 0.9em;
}

.wrap-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 60%;
}
.social-links {
    position: fixed;
    bottom: 7%;
    right: 4%;
    z-index: 1000;
}

.social-links a {
    margin-left: 15px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    font-size: 24px;
}

.social-links a:hover {
    color: #B0E0E6;
}

.skill-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: scale(1.1);
}

.skill-item i {
    font-size: 3em;
    margin-bottom: 5px;
}

.skill-item span {
    font-size: 0.9em;
}

.skill-level {
    position: fixed;
    bottom: 15%;
    left: 60%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: none;
}
.animated-title {
    transition: transform 0.3s ease, color 0.3s ease;
}

.animated-title:hover {
    transform: scale(1.01);
    color: #B0E0E6;
}
.highlight-text {
    color: #4682B4; /* This is a steel blue color, you can change it to any color you prefer */
}
.subtext {
 
    color: #4682B4;
}

