/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}
header {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 60px 0;
}
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #333;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    background-color: #333;
    position: sticky;
    top: 0;
}
nav ul li {
    padding: 10px 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #007bff;
}
section {
    padding: 40px;
}
.job {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.job h3 {
    color: #007bff;
}
.job button.toggle-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.job button.toggle-button:hover {
    background-color: #0056b3;
}
.job .description {
    display: none;
    margin-top: 10px;
}

.description {
    display: none;
    padding: 1rem 0;
}

.description.show {
    display: block;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.skills-list {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.skills-list ul {
    list-style-type: none;
    padding: 0;
}

.skills-list ul li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #555;
    border-left: 3px solid #333;
    padding-left: 1rem;
}

/* Styling for the links section */
#links {
    background-color: #f7f7f7;
    padding: 40px 0;
}

.links-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list li {
    margin: 0 20px;
}

.links-list a {
    display: flex;
    align-items: center;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.links-list a:hover {
    color: #0056b3;
}

.links-list i {
    margin-right: 8px;
}