body {
    background-color: mediumspringgreen;
    color: white;
    font-family: Arial, sans-serif;
}

.grid-container {
    display: grid;
    grid-template-rows: auto auto auto;
    background-color: white;
    padding: 10px;
}

.container {
    background-color: rgb(27, 56, 75);
    /* width: 95%; */
    /* padding: 10px; */

    margin-left: 30px;
    height: 100%;
}

.container h1 {
    color: white;
    padding: 20px;
    background-color: black;
    border: solid white 1px;
    border-radius: 10px;
    margin-left: 30px;
    margin-right: 30px;
}
.container p {
    color: rgb(113, 174, 188);

    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 30px;

    font-size: 24px;
    background-color: black;
    margin-left: 30px;
    margin-right: 30px;


    border-radius: 10px;
    border: solid white 1px; 


}

.container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    border: solid rgb(49, 95, 126) 15px;
}


.service-header {
    text-align: center;
    margin-left: 50px;
    margin-right: 50px;
    color: black;
    background-color: white;
    border-radius: 10px;

}
#programming-services-header {
    color: rgb(15, 203, 15);
    background-color: black;
    border: solid gray 7px;
    font-family: serif;
    padding-top: 30px;
    padding-bottom: 30px;
}

#logo-img {
    /* width: 24rem;
    height: 24rem; */
    width: 40%;
    height: auto;
    border-radius: 50%;
    border: solid white 5px;
}


nav {
    display: flex;
    justify-content: space-between;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 10px;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 24px;
    color: white;
    
    a:visited {
        color: inherit;
    }
}
nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    padding: 0;
    height: 100%;
}
nav li {
    /* display: flex;  */
    align-items: center;
    margin: 30px;
    background-color: rgba(255, 255, 255, 0.150);
    padding: 20px;
}
nav li:hover {
    background-color: rgba(241, 153, 53, 0.189);
    /* color: black; */
}
nav li a {
    text-decoration: none;
    color: inherit;
}
nav li h3 {
    background-color: rgb(36, 107, 36);
    text-align: center;

}



.skills-pool {
    color: thistle;
    background-color: black;

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;

    padding: 30px;

    margin-left: 50px;
    margin-right: 50px;

    border-radius: 10px;
    border: solid white 1px;

    list-style-type: circle;

    align-items: center;

    font-weight: bold;
    font-size: 20px;

}