@import "reset.css";

body {
    background-color: #f2f2f2;
}

.container {
    /*background-color: #383d41;*/
    width: 90%;
    /*height: 24pc;*/
    padding: 1pc;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* justify-content: space-around; */
}

.logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 5vh;
}
.center {
    width: 100%;
    /*height: 100%;*/
    display: flex;
    gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    overflow: auto;
}
.cards {
    transition: border 2s;
    width: 12.5rem;
    height: 9.375rem;
    /* margin: auto; */
    /*border: rgba(136, 136, 144, 0.5) 0.1rem solid;*/
    border: 1px solid #e5e5e5;
    background: whitesmoke;
    text-align: center;
    border-radius: 4%;
    cursor: pointer;
}
.cards:hover {
    border: 1px solid #383d41;

}

.cards>.card-header{
    text-align: center;
    padding-top: 10px;
    width: 100%;
    height: 72%;
    font-size: 4rem;
    color: #383d41;
}
.cards>.card-footer{
    text-align: center;
    /* margin-bottom: -11px; */
    width: 100%;
    font-size: 1rem;
    font-weight: 800;
    color: #383d41;
}

.img-logo {
    width: 30%;
}