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

body {
    font-family: 'Inconsolata', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('assets/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    line-height: 1.6;
    padding: 1%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lilita One', cursive, sans-serif;
    font-weight: 400;
}

#about{
    font-size: 18px;
    text-align: justify;
}

header {
    background: transparent;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    text-align: left;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header p {
    font-size: 1.2em;
    font-weight: 300;
}

.profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
}

.profile-pic img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
    
}

section {
    background-color: rgba(255, 255, 255, 0.9); /* Add transparency */
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

h2 {
    color: #333;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(51, 51, 51, 0.85);
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 10px 0;
    font-size: 0.9em;
}

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

ul li {
    background: #ffffff;
    padding: 15px;
    margin: 10px 0;
    border-left: 5px solid #3498db;
    transition: all 0.3s ease-in;
    cursor: pointer;
}

ul li:hover {
    background-color: #d5eaef;
}

li {
    margin-bottom: 10px;
}

.project-button{
    background-color: white;
}
.project-button:hover{
    background-color: #def2fe;
    font-weight: 600;
}

.cert-button {
    background-color: white;
}

.cert-button:hover {
    background-color: #def2fe;
    font-weight: 600;
}

.expe-button {
    background-color: white;
}

.expe-button:hover {
    background-color: #def2fe;
    font-weight: 600;
}