footer {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: var(--main-gray);
}

.cards {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 60px;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 35px;
    color: var(--main-background);
}

.card p {
    font-family: 'Lato', sans-serif;
    color: var(--main-background);
    font-size: 20px;
}

.card ul {
    list-style: none;
}

.card ul li,
.card ul li a {
    text-decoration: none;
    color: var(--main-background);
    transition: 0.4s;
    font-size: 20px;
}

.card ul li a:hover {
    opacity: 55%;
}

.copyright {
    width: 100%;
    height: 60px;
    background-color: var(--main-background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright p {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--main-white);
}

.copyright p b {
    font-weight: 600;
    color: var(--main-blue);
}

.copyright p a {
    text-decoration: none;
    color: var(--main-white);
    transition: 0.3s linear;
}

.copyright p a:hover {
    color: var(--main-blue);
}

@media (max-width: 980px) {
    .cards {
        flex-direction: column;
        gap: 30px;
    }

    .copyright {
        padding: 15px;
    }
}



