@import url("../../common/css/navbar.css");
@import url("../../common/css/footer.css");


dl, ol, ul {
    margin-top: revert;
    margin-bottom: revert;
}



body {
    background-color: #F8F9FA;
  }


.title-blog {
    color: #1f2b46;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    border-bottom: 2px solid #3498db;
    display: inline-block;
    margin-top: 50px;
    padding-bottom: 8px;
}

.container{
    min-height: calc(100vh - 75px - 112px - 49px);
    display: flex;
    justify-content: center; /* Centre horizontalement */
    padding: 60px;
    flex-direction: column;
    margin-bottom: 75px;
}



.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(120,190, 238,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    background-color: var(--card-color-inside);
}

.card:hover {
    transform: translateY(-5px);
    border-color: #6f9cb993;
}



.card h2 {
    font-size: 1.5rem;
    color: #1777b8;
}

.card p {
    color: #6c757d;
    font-size: 1rem;
}



.footer-wrapper {
    bottom: 0;
    width: 100%;
    margin-top: 0;

}