body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
    margin-left: 10%;
    margin-right: 10%;
}

header {
    background-color: #007acc;
    color: #fff;
    text-align: center;
    padding: 2rem;
    /* ---------------- */
    position: fixed;
    top: 0;
    left: 0;
    z-index:1000;
    width:100%;
    /* --------------------- */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #007acc;
}

nav ul li {
    margin-right: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #005b97;
}

section {
    padding: 2rem;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

footer {
    background-color: #007acc;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}

.header-line {
    border: none;
    border-top: 2px solid #fff; /* White line with a thickness of 2px */
    width: 100%; /* Full width of the container */
    /* margin: 10px 0; Adjust the margin as needed */
    /* margin: 10px 10% 10px 0; Apply margin-right: 10%; */
}

.header-line_2 {
    border: none;
    border-top: 2px solid #007acc; /* White line with a thickness of 2px */
    width: 100%; /* Full width of the container */
    /* margin: 10px 0; Adjust the margin as needed */
    /* margin: 10px 10% 10px 0; Apply margin-right: 10%; */
}

.resume{
    width: 100%
}


/* maybe comment this part out when screen is small? */

/* Style for the image inside the left side */
.left-side img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

@media screen and (min-width: 770px) {
    /* Style for the container */
    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px;
    }

    /* Style for the left side (profile picture) */
    .left-side {
        flex: 1; /* Takes up 50% of the available width */
    }


    /* Style for the right side (text content) */
    .right-side {
        flex: auto; /* Takes up 50% of the available width */
    }

    /* Additional styling for the "About Me" section (adjust as needed) */
    #about {
        text-align: left; /* Align text to the left */
    }

    .draw-boxes{
        border-radius: 25px;
        border-right: 2px solid #007acc;
        padding: 20px;
        width: auto;
        height: auto;
    }
}

@media screen and (max-width: 770px) {
    section {
        padding: 0.5rem;
    }
    /* ul {
        list-style: none;
    } */
    .left-side{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    body {
        font-family: Arial, sans-serif;
        background-color: #f0f0f0;
        color: #333;
        line-height: 1.6;
        margin-left: 5%;
        margin-right: 5%;
        font-size: 12px;
    }
    section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    nav ul li {
        margin-right: 1rem;
    }
}

