:root {
    --favbgcolor: #144552;
}

.profile {
    display: flex;
    align-items: center;
}

.favorites {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px;
}

.favorite {
    background-color: var(--favbgcolor);
    padding: 10px;
    border-radius: 10px;
}

.favorite h3 {
    text-align: center;
    font-size: 24px;
}

.favorite ul {
    list-style: none;
    padding: 0;
}

.favorite li {
    margin: 5px;
}

h6 {
    display: flex;
    justify-content: center;
}

h3 {
    text-align: center;
}