html {
    background-color: rgb(255, 255, 255);
}

.logo-image {
    width: 100%;
    height: auto;
}

#lJones {
    width: 38%; 
    max-width: 550px; 
    height: auto; 
    border: 5px solid rgb(127,201,255); /*Also can use solid gray*/
    margin-right: 40px; 
    margin-top: 110px;
    float: right;
}

#shade-color, #shade-color1 {
    background-color: rgb(240, 240, 240);
    padding: 20px;
    border: 2px solid black;
    border-radius: 5px;
    box-sizing: border-box;
    width: 50%;
    margin-left: 30px;
    margin-bottom: 25px;
}

#shade-color1 p {
    text-align: center;
}

footer {
    background-color: rgb(240, 240, 240);
    width: 100%;
    text-align: center;
}

#Contact, #Contact1 {
    text-align: center;
    width: 50%;
    margin-left: 40px;
}

.container-resume {
    background-color: rgb(240, 240, 240);
    border: 2px solid black;
    border-radius: 5px;
    box-sizing: border-box;
    width: 50%; 
    max-width: 600px; 
    margin: 0 auto; 
    text-align: center;
    padding: 20px; 
    padding-top: 20px;
}

#About {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
}

@media (max-width: 980px) {
    
    .container {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start; 
        justify-content: space-between;
    }

    #lJones {
        width: 38%; 
        max-width: 600px;
        margin-right: 30px;
        margin-bottom: 150px;
        height: 100%; 
    }

    #shade-color, #shade-color1 {
        width: 55%; 
        max-width: 600px;
        margin-left: 20px;
        margin-bottom: 20px; 
        height: auto; 
    }

    .container-resume {
        width: 60%;
    }

    #Contact, #Contact1 {
        width: 60%;
    }
}

@media (max-width: 768px) {
    #About {
        font-size: 36px;
    }
}




