/* Déclaration de la police Jost */
@font-face {
    font-family: 'Jost';
    src: url('fonts/Jost-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
}

/* Full-page styling */
body,
html {
    height: 100%;
    display: flex;
    font-family: 'Jost', sans-serif;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;
}

/* Container to center content */
.container {
    text-align: center;
}

/* Logo styling */
.logo img {
    width: 150px;
    /* Adjust size as needed */
    margin-bottom: 20px;
}

/* Links container */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Button styles */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 25px;
    /* Round edges */
    text-decoration: none;
    font-size: 18px;
    color: white;
    transition: background-color 0.3s;
}

/* Social media button styles */
.instagram {
    background-color: #E1306C;
}

.facebook {
    background-color: #3b5998;
}

.tiktok {
    background-color: #000000;
}

.whatsapp {
    background-color: #25D366;
}

/* Hover effect */
.btn:hover {
    opacity: 0.8;
}

/* Icon styles */
.btn i {
    margin-right: 10px;
}

/* Style pour le bouton Site Internet */
.btn.website {
    background-color: #007BFF;
    /* Couleur bleue pour le bouton site internet */
}

/* Style de hover pour le bouton Site Internet */
.btn.website:hover {
    background-color: #0056b3;
    /* Couleur bleue plus foncée pour hover */
}

/* Responsive Design */
@media (max-width: 600px) {
    .btn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .logo img {
        width: 100px;
    }
}