@font-face {
    font-family: "Pupilice";
    src: url("../../fonts/CalSans-Regular.ttf") format("truetype");
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items: center;
    padding-left:20px;
    padding-right:20px;
    font-family:"Pupilice";
    gap:20px;
    font-size: clamp(15px, 3vw, 18px);
}

nav {
    margin-bottom:20px;
    width:100%;
    position:sticky;
    left:0;
    top:0;
    padding-top:10px;
    z-index:1;
    font-size: clamp(10px, 3vw, 25px);
    background-color: white;
}

nav ul {
    width:100%;
    display: flex;
    justify-content: space-evenly;
    list-style:none;
}

nav ul li a {
color: black;
text-decoration: none;}

.menu-deroulant ul {
    display:none;
    font-size:20px;
}

.menu-deroulant:hover {
        background-color: rgb(180 180 180);
}

.menu-deroulant:hover ul {
    display:block;
    z-index:1;
    position:absolute;
    background-color: rgb(200 200 200);
    width:auto;
}

.menu-deroulant:hover ul li:hover {
    background-color: rgb(0 0 0 /50%);
}

#pictures{
    list-style:none;
    width:100%;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(120px, 1fr));
    gap:20px;
    margin-bottom:30px;
}

#pictures li{
    width:auto;
    height:clamp(150px, 30vw, 250px);
    display:flex;
    flex-direction:column;
    align-items:center;
}

#pictures li img{
    width:100%;
    height:100%;
    object-fit:contain;
}

#infos-contacts{
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    gap:20px;
}

#infos{
    max-width:600px;
}

#contacts{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

#contacts img{
    padding:10px;
}

a {
    text-decoration:none;
    color:black;
}
