@font-face {
    font-family: 'Montserrat';
    src: url('assets/Montserrat-VariableFont_wght.ttf') format('truetype');
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: aliceblue;
}

.clickable { 
    cursor: pointer; 
}

.nav-item a {
    white-space: nowrap;
    color: whitesmoke;
}

#title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2em;
    color: whitesmoke;

}

#utilisateur img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #000;
    margin-right: 10px;
}

.btn {
            cursor: pointer;
            transition: transform 0.3s ease, color 0.3s ease;
        }

.btn:hover {
            transform: translateY(-4px);
            color: #C0C0C0;
}
