/* --- BASE & MOBILE (Par défaut) --- */
div.actions {
    flex-direction: row;
    display: flex;
}

div.actions>div>a {
    border: 1px solid white;
    font-size: 25px;
}

.unconnect {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    margin: 60px 0;

}

.section-header {
    background-color: transparent;
}

article.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 10px;
    margin-bottom: 30px;
    background-color: var(--primary-color);
    color: var(--primary-card-color);
    border-radius: 10px;
    box-shadow: 3px 3px #000, 6px 6px #6d6d6d, 9px 9px #000;
}

article.card:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

article.card>div {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.card img {
    width: 60px;
    height: auto;
    border-radius: 220%;
}

article.card h4 {
    margin: 0;
    font-size: 1.1rem;
    width: max-content;
}

.card-footer,
.card-footer div,
.unconnect-img {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.btn-connect {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    color: white;
    cursor: crosshair;
    transition: transform 0.3s ease;
    /* Transition fluide */
    border: none;
}

.btn-connect:hover,
div.actions>div:hover {
    transform: scale(1.1);
}


#clock {
    text-align: center;
    font-size: xx-large;
    background-color: aqua;
}

@media (min-width: 720px) {
    .btn-connect {
        margin: 50px;
    }

    .card img {
        width: 80px;
    }
}