/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #181818; 
    color: #ffffff; /* White text */
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #181818; /* Slight contrast to the body */
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.288);
}

/* Headings */
h1, h2, h3 {
    color:  #1e90ff; 
    margin-top: 0;
}

/* Links */
a {
    color: #1e90ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    margin: 30px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}

/* Buttons */
button, .resume-btn {
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    background-color: #1e90ff;
    color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover, .resume-btn:hover {
    background-color: #187bcd;
}

/* Lists */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    padding: 5px 0;
}

/* Certifications Section */
.certification-list {
    padding-left: 20px;
}

.certification-list li {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}
