@media screen and (min-width: 901px) {
    .skills-education-light{
        box-sizing: border-box;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: white;
        color: black;
        transition: all 0.4s ease-in-out;
    }
    .skills-education-dark{
        box-sizing: border-box;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #060C14;
        color: white;
        transition: all 0.4s ease-in-out;
    }
}
@media screen and (max-width: 900px) {
    .skills-education-light{
        box-sizing: border-box;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: white;
        transition: all 0.4s ease-in-out;
    }
    .skills-education-dark{
        box-sizing: border-box;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #060C14;
        transition: all 0.4s ease-in-out;
    }
}
@media screen and (max-width: 600px) {
    .skills-education-light{
        box-sizing: border-box;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        background: white;
        transition: all 0.4s ease-in-out;
    }
    .skills-education-dark{
        box-sizing: border-box;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #060C14;
        transition: all 0.4s ease-in-out;
    }
}
@media screen and (max-width: 300px) {
    .skills-education-light{
        box-sizing: border-box;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        background: white;
        transition: all 0.4s ease-in-out;
    }
    .skills-education-dark{
        box-sizing: border-box;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #060C14;
        transition: all 0.4s ease-in-out;
    }

}