@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@500,300&display=swap');

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100vw;
    min-height: 500px;

    font-family: 'Rubik', sans-serif;
}

main
{
    width: 80%;

    padding: 20px;

    border: 1px dashed #000;
}

main > ul
{
    list-style: none;

    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

ul > li
{
    display: flex;
    justify-content: center;
    align-items: center;

    flex: 1 1 25%;
    padding: 10px;

    background-image: linear-gradient(180deg, #ee4864 0%, #f2e675 100%);
}

li > a
{
    color: rgb(49, 3, 22);
    text-decoration: none;
    text-align: center;
}
li > a:hover
{
    text-decoration: underline;
}

h1, p
{
    margin-bottom: 1rem;
}