* {
    box-sizing: border-box;
}
body {
    background-color: #F7F7F7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;

}

.nav {
    height: 20px;
    display: flex;
    padding: 0px 36px;
    margin-top: -20px;
    padding-top: 20px;
    justify-content: center;
    background-color: #F7F7F7;
    box-shadow: 0px 2.98256px 7.4564px rgba(207, 0, 0, 0.1);
}
.header{
    height: 70px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    color: #8E2657;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}
.coverImg{
    cursor: pointer;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
}
.coverImg:hover{
    transform: scale(1.3);
    transition: 2s;
}
.coverImg:hover  body:not(:hover) {
    filter: blur(4px);
  }
.footer {
    height: 70px;
    display: flex;
    
    padding: 0px 36px;
    align-items: center;
    justify-content: center;
    /* background-color: #F7F7F7; */
    box-shadow: 0px 2.98256px 7.4564px rgba(207, 0, 0, 0.1);
}
.footer-text {
    height: 70px;
    position: absolute;
    top: 130%;
    left: 41%;
    color: #8E2657;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}
#buttonChangeMode{
    padding-top: 40px;
    position: relative;
    left: 85%;
    top: -123.5%;
    background: none;
    border: none;
    cursor: pointer;
}

/* .add-btn-light {
    background-image: url(../images/add-light-mode.svg);
}

.add-btn-dark {
    background-image: url(../images/add-dark-mode.svg);
}

.remove-btn-light {
    background-image: url(../images/remove-light-mode.svg);
}

.remove-btn-dark {
    background-image: url(../images/remove-dark-mode.svg);
}
.mode {
    display: block;
    width: 60px;
    border: none;
    border-radius: 14px;
    display: flex;
    place-self: center;
    justify-content: center;
    grid-column: 1 / 3;
    text-align: center;
    margin-top: 4rem;
    
}
.dark-mode {
    background-color: gray;
    color: white;
  }
.light-mode {
    background-color: wheat;
    color: slategray;
}   */

.coverImg{
    height: 200px;
    width: 147px;
    border-radius: 5px;
    box-shadow: 0px 2.98256px 7.4564px rgba(207, 0, 0, 0.1);
}
.cards-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* flex-wrap: nowrap; */
    gap: 20px;
    /* overflow-x: hidden; */
    
}
.card{
    padding-top: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* padding: 10px; */
    height: 260px;
    color: inherit;
}
.card-stats{
    display: grid;
    gap: 28px -130px;
    color: white;
}
.date{
    color: #2B283A;
    font-size: 14.34px;
    font-weight: bold;
}
h5{
    color: #2B283A;
    font-size: 15.24px;
}
.title{
    color: #2B283A;
    font-size: 25px;
    font-weight: bold;
    margin-top: -10px;
    margin-bottom: -30px;
}
.description{
    color: #2B283A;
    font-size: 12.7px;
    padding-bottom: -30px;

    
}
