.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    padding: 70px 20px 0 20px;
    grid-gap: 20px;
}

.project-1 {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: #7cb4b8;
    border-radius: 15px;
    height: 100%;
    width: 100%;

}

.project-2 {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #7cb4b8;
    border-radius: 15px;
    height: 100%;
    width: 100%;

}

.project-3 {
    grid-column: 1;
    grid-row: 3;
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #7cb4b8;
    border-radius: 15px;
    height: 100%;
    width: 100%;

}

.projects-grid li {
    margin-bottom: 15px;
}

.teaser {
    color: #fff;
    background-color: #564A64;
    border-radius: 10px;
    padding: 0px 5px;
    margin-top: 10px;
    margin-bottom: 5px;
    transition: 0.5s;
}

.teaser:hover {
    background: #515b5b;
}

.projects-grid li a {
    color: #fff;
    background-color: #515b5b;
    border-radius: 10px;
    padding: 2px 10px;
    transition: 0.3s;
    display: block;
    margin-top: 10px;

}