main {
    padding: 20px;
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 80px;
}

h1  {
    font-size: 5rem;
    text-align: center;
}

.sites {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 80px;
    width: 100%;
    gap: 32px;
}

.site {
    width: calc(50% - 16px);
    color: var(--wp--preset--color--primary);
    border-radius: 50px;
    border: 4px solid var(--wp--preset--color--primary);
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.site:hover {
    background-color: var(--wp--preset--color--primary);
    cursor: pointer;
    color: white;
}

.site > h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-block: 1rem;
    font-weight: 500;
}

.site > svg {
    width: 42px;
    height: auto;
}

@media screen and (max-width: 780px) {
    .site {
        width: 100%;
    }
    
}

@media screen and (max-width: 500px) {
    h1 {
        font-size: 3rem;
    }

    .site > h2 {
        font-size: 1.2rem;
    }

    .site > svg {
        width: 32px;
    }
}