.center-redirect {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 10%;
}

.project-grid{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.grid-block{
    position: relative;
    display: flex;
    flex-grow: 1;
    padding: 3rem 1rem;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
    border-radius: 25px;
    border: 1px solid white;
}

.project-section{
    position: relative;
    background-color: rgba(0, 0, 0, 0.80);
    padding: 1rem;
    border-radius: 25px;
    border: 1px solid white;
    opacity: 1;
}

.project-header {
    font-size: 1.5rem;
}
.project-description{
    font-size: 1.2rem;
    color: rgb(145, 154, 165);
}

.fowl-play::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    background-image: url("../media/fowl-play-bg.png");
    background-color: #766e58;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
}
.fowl-play:hover::before{
    opacity: 1;
}

.ambition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    background-image: url("../media/ambition-reality-bg.png");
    background-color: #4b597b;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
}
.ambition:hover::before {
    opacity: 1;
}

.ancient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    background-image: url("../media/dino-icon-bg2.png");
    background-color: #624b7b;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
}
.ancient:hover::before {
    opacity: 1;
}