*{
    margin: 0;
    padding: 0;
}

body{
    background-color: rgb(73, 235, 235);
    min-height: 100vh;
}

nav{
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 -2px 5px 2px black;
    height: 100px;
}
nav .logo{
    width: 60px;
}
nav ul li a{
    font-size: 12pt;
}
nav a.nav-link:hover, a.actif{
    color: white;
    background-color: rgb(4, 121, 121);
}

.template h2{
    margin-top: 40px;
}

.list-template{
    text-align: center;
    padding-bottom:10px;
}

.list-template a{
    text-decoration: none;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
}

footer{
    padding: 3rem;
    background-color: brown;
    color: white;
}
footer a{
    color: black;
    font-weight: bold;
    text-decoration: none;
}
footer a:hover{
    color: white;
}
footer li{
    list-style: none;
    display: inline;
    margin: 0.5rem;
}

/* Media Query */
/* mobile */
@media (max-width:576px){
    nav{
        font-size: 10pt;
    }
}