/* Variables */

:root {
    --font-heading-main: NHaasGrotesk, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    --font-text-main: NHaasGrotesk, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}

/* Global */

body {
    font-family: var(--font-text-main);
    font-size: 1rem;
    line-height: 1.5;
    background-color: #fff;
}

img {
    width:50%;
    max-width: 100%;
    height: auto;
    margin-bottom: 100px;
}

.wrapper {
    padding: 25px;
}
@media (min-width: 768px) {
    .wrapper {
        padding: 60px;
    }}

ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    background-color: black;
    padding: 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

li h2 {
    margin: 0;
}

li a {
    display: inline-block;
    border: 1px solid white;
    border-radius: 100px;
    padding: 12px 24px;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    width: calc(50% - 5px);
    white-space: nowrap;
}


li > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    li > div {
        flex-wrap: wrap;
    }
}