#groen
{
    color:green
}

section
{
    text-align: center;
    justify-self: center;
    width: 100%;
    margin: 0;
    padding: 0;

}

@media (min-width: 700px)
{
    section
    {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }
}

h1
{
    font-size: 40px;
}

p
{
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 90%;
    margin-right: 5%;
    margin-left: 5%;
}

section div ul
{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    margin: 0;
    padding: 0;
    margin-top: 30px;
}

section div ul li
{
    width: 350px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
}

section div ul li:hover
{
    cursor: pointer;
    transform: scale(1.03);
    transition: all .2s;
}

section div ul li:hover img
{
    box-shadow: 0px 0px 50px rgb(0, 0, 0);
    transition: all .5s;
    transform: scale(1.03);
}

section div ul li a
{
    color: white;
    font-size: 30px;
    font-weight: 600;
    text-shadow: 0px 0px 15px black;
}

section div ul li img
{
    width: 324px;
    height: auto;
    border: white 2px solid;
    border-radius: 20px;
margin-left:10px;
Margin-right: 10px;
}

section div ul li button
{
    position: absolute;
    top: 40%;
    height: 50px;
    width: 50px;
    border-radius: 25px;
    border: 1px solid rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 900;
    opacity: 0.8;
    background-color: black;
    color: white;
}

section div ul li button:hover
{
    cursor: pointer;
    transform: scale(1.03);
    transition: all .2s;
    opacity: 1;
}

section div ul li button:nth-last-child(1)
{
    right: -2%;
}

section div ul li button:nth-last-child(2)
{
    left: -2%;
}

@media (max-width: 700px)
{
    section div ul li
    {
    width: 250px;
    }
    section div ul li img
{
    width: 224px;
}
section div ul li a
{
    font-size: 20px;
}
section div ul li button
{
    top: 35%
}
section div ul li button:nth-last-child(1)
{
    right: -40px;
}

section div ul li button:nth-last-child(2)
{
    left: -40px;
}
}