/* Global Styles - Meunier Theme */

/* Logo */

.logo-btn {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.logo-btn:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* Tailwind CSS */

/* Padding */

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-0 {
    margin-bottom: 0rem;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.center {
    display: flex;
    align-items: center;
    align-content: center;
}