body{
    margin: 0%;
}

.grid{
    display: grid;
    size: 100%;
    grid-template-columns: 20% 20% 20% 20%;
    gap: 6%;
    margin: 30px 5%;
}
.grid > a > div{
    background-color: blueviolet;
    outline: 7px solid;
    outline-offset: -15px;
    border-radius: 25px;
    height: 400px;

}

.flex{
    margin: 0px;
    display: flex;
    flex-flow: row nowrap;
    background-color: #7e55b17a;
}

.flex > div{
    background-color: transparent;
    margin: 10px;
    text-align: center;
    font-size: 20px;
}

.title{
    margin: 30px 15px;
}

.noelle{
    color:rgb(85, 21, 45);
}

img{
    height: 400px; 
    width: 100%; 
    border-radius: 25px;
}

.raggy{
    color:rgb(128, 80, 180);
}