body,
html {
    font-size: 18px;
    font-family: 'Inter',Helvetica, sans-serif;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}
i::before {
    vertical-align: middle;
}
main {
    padding: 110px 30px 30px 30px;
}

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px;
    background-color: rgb(65, 71, 17);
    background-image: url('logo.svg');
    background-size: auto 33px;
    background-repeat: no-repeat;
    background-position: center;
    height: 80px;
}


#navbar .navbar-element {
    height: 80px;
}

#navbar a {
    color: rgb(228, 255, 0);
    text-decoration: none;
}

#navbar a:hover {
    color: rgb(255, 255, 0);

}

#toggle-impressum-modal {
    color: rgb(228, 255, 0);
    cursor: pointer;
}

#toggle-impressum-modal:hover {
    color: rgb(255, 255, 0);
}

.separator {
    height: 1px;
    background-color: #dddddd;
    margin: 20px 0;
}

.btn {
    border-radius: 0;
}

.btn-primary {
    background-color: rgb(65, 71, 17);
    border-color: rgb(65, 71, 17);
    color: rgb(228, 255, 0);
}

.btn-primary:hover {
    background-color: rgb(44, 49, 10);
    border-color: rgb(44, 49, 10);
    color: rgb(228, 255, 0);
}

.oeuvre-item {
    display: flex;
    margin-bottom: 20px;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    color: #000;
    text-decoration: none;
}

.oeuvre-item:hover {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
}

.oeuvre-image {
    flex: 0 0 130px;
    background-size: cover;
    background-position: center;
}

.oeuvre-info {
    padding: 1rem;
}

.oeuvre-title {
    font-size: 18px;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #ccc;
}

.oeuvre-title h4 {
    margin-bottom: 0;
}

.oeuvre-artist {
    font-size: 1rem;

}

.oeuvre-date,
.oeuvre-artist,
.oeuvre-subtitle {
    color: #848484;
}

.oeuvre-numero_identifiant {
    font-size: 14px;
    background-color: rgb(228, 255, 0);
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color:#000;
    font-weight: bold;
}
.modal-content{
    border-radius: 0;
}
.modal-header {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.modal-footer {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

@media (max-width: 768px) {
    main {
        
        padding: 95px 0 15px 0;
    }
    #navbar {
        background-size: auto 26px;
    }
    .oeuvre-image {
        flex: 0 0 100px;
        background-size: cover;
        background-position: center;
    }
}