p {
    font-size: 16px;
}

h4 {
    font-size: 20px;
}

.projects-home_title {
    margin: 150px 0 40px 0;
}

.text-container {
    width: 100%;
    margin: auto;
    align-content: center;
}

.projects {
    justify-content: space-evenly;
}

.project-rows {
    display: flex;
    justify-content: space-between;
}

.project_img {
    transition: ease-in-out .5s;
    z-index: 1;
    margin: 0 0 80px 0;
    height: 255px;
    width: 385px;
}

.project_img:hover {
    color: #fff;
    text-decoration: none;
}

.fullwrap {
    position: relative;
    max-width: 500px;
  }

.fullwrap img { 
    width: 100%; 
}

.project_text {
    font-family: 'Basis Grotesque', sans-serif;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; 
    left: 0;
    text-align: center;
    padding-top: 30%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    color: #fff;
    visibility: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.sw-text {
    padding-top: 25%;
}


.fullwrap:hover .project_text {
    visibility: visible; 
    opacity: 1;
}

.woodcut-img {
    object-fit: cover;
    position: center;
}

@media (max-width: 1300px) {
    
    main {
        display: flex;
        justify-content: center;
    }

    p {
        font-size: 14px;
    }
    
    h4 {
        font-size: 16px;
    }

    .projects-home_title {
        margin: 80px 0 30px 0;
    }

    .projects {
        display: block;
        margin: auto;
    }

    .project-rows {
        display: block;
        margin: auto;
    }

    .project_img {
        margin: auto;
        transition: ease-in-out .5s;
        z-index: 1;
        background-size: cover;
        color: transparent;
        display: inline;
    }

    .fullwrap {
        position: relative;
        max-width: 100%;
      }
    
    .fullwrap img { 
        width: 100%; 
    }

    .project_text {
        line-height: 30px;
        margin: 10px 0 40px 0;
        box-sizing: border-box;
        width: 335px;
        height: 100%;
        position: relative;
        display: block;
        top: 0; 
        left: 0;
        text-align: left;
        padding-top: 0;
        background: #fff;
        color: #000;
        visibility: visible;
        opacity: 1;
        transition: opacity 0.8s;
    }

}

