@font-face {
    font-family: "main";
    src: url('static/fonts/Hacen_Tunisia_Bold.ttf');
}
:root{
    --primary-color:#791542;
    --secondary-color:#ef5829;
}
body {
    margin: 0;
    padding: 0;
    font-family: "main",Arial, sans-serif !important ;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.logo img {
    width: 120px;
    height: 120px;
    border-radius: 25%;
    object-fit: cover;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    width: 100%;
}

.link {
    text-decoration: none;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    width: 90%;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.link i {
    font-size: 1.5rem;
}

.link:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}


.map {
    margin-top: 20px;
    width: 100%;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}