html{
    background: linear-gradient(to right, #626d45,#f2f1ef);
    color: white;
}

h1{
    display: flex;
    justify-content: center;
}

img {
    width: 250px;
    height: 250px;
    padding: 5px;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 1100px;
    max-width: 100%;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 0 16px rgba(0,0,0,0.5)
}

@media screen and (max-width: 1000px) {
    .projects {
        flex-direction: column;
    }

    img {
        width: 190px;
        height: 190px;
    }
}

@media screen and (max-width: 700px) {
    .projects {
        flex-direction: column;
    }

    img {
        width: 130px;
        height: 130px;
    }
}
