html, body
{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #e2e2e2;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.container {
    /* min-width: 800px; */
    /* width: 60%; */
    /* padding: 100px; */
    max-width: 1200px;
    display: flex;
    height: max-content;
    justify-content: center;
    align-content: flex-start;
    padding: 0.5rem;
    flex-wrap: wrap;
}

.item{
    width: 20rem;
    height: 8rem;
    display: flex;
    border: 1px solid #aaa;
    padding: 1rem;
    align-items: center;
    margin: 0.5rem;
}

a{
    color: black;
    text-decoration: none;
}

a:nth-of-type(3n+1):hover
{
    border-color: #3B46B2;
}

a:nth-of-type(3n+2):hover
{
    border-color: #2C86CC;
}

a:nth-of-type(3n+3):hover
{
    border-color: #00E02A;
}

.item img{
    width: 30%;
}

.item div{
    float: right;
    height: fit-content;
    width: 60%;
    padding: 1rem;
    font-size: 20px;
    font-family: Roboto, sans-serif;
    text-align: center;
}