* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

section {
    border: #E9E5D6 solid 2px;
    padding: 24px;
    border-radius: 15px;
    margin-left: 15px;
    margin-right: 15px;
    box-shadow: 0px 0px 5px #000;
    justify-items: center;
    align-items: center;
}

.heading {
    text-align: center;
    font-size: 2.5em;
    font-family: "Sarala", sans-serif;
    font-weight: 400;
    color: #E9E5D6;
    margin-bottom: 24px;
    margin-top: 24px;
}

.projects-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 29.5px;
    width: 100%;
    justify-content: center;
    justify-items: center;
    max-width: 1440px;
}

.projects-container a {
    text-decoration: none;
    color: #E9E5D6;
}

.project {
    background-color: #E9E5D6;
    height: 195px;
    width: 310px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: ease-in-out 0.3s;
    border: #E9E5D6 solid 2px;
    box-shadow: 0px 0px 5px #000;
}

.project div p {
    font-family: "Sarala", sans-serif;
    font-size: 20px;
    color: #E9E5D6;
}

.project:hover {
    letter-spacing: 5px;
}

.soon-ribbon {
    background-color: #ACB992;
    width: 1000px;
    text-align: center;
    padding: 5% 0;
    transform: rotate(-50deg);
}


button {
    padding: 10px 100px;
    border-radius: 25px;
    cursor: pointer;
    color: #E9E5D6;
    background-color: #362706;
    border: none;
    transition: ease-in-out 0.3s;
}

button:hover {
    background-color: #ACB992;
}


.more-git {
    margin: 0 auto;
    padding-top: 35px;
    padding-bottom: 93px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.more-git a {
    color: #E9E5D6;
    text-decoration: none;
}

.more-git a:hover {
    text-decoration: underline;
}

/* @media (max-width:1200px) {
  .project{
        text-align: center;
        display: flex;
        flex-direction: column;
    }

  .projects-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
  } */


@media (max-width:950px) {
    .project {
        max-width: 300px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .projects-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width:375px) {
    .project {
        max-width: 250px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .projects-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .section {
        margin-left: 0;
        margin-right: 0;
    }
}