body{
    margin: 0;
    padding: 0;
}
.title-cont{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 30px;
}
.block-cont{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
    margin-bottom: 30px;
}
.main{
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.block{
    width: 265px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    margin: 5px;
    border: 1px solid #e6eaed;
}
.info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.block h5{
    color: #007eff;
}
.block a{
    width: 100%;
}
.block button{
    width: 100%;
    border-radius: 10px;
    border: none;
    padding: 10px;
    background-color: #ff005e;
    color: white;
}
.footer-cont{
    padding: 20px;
    margin-bottom: 30px;
}
.footer-cont p{
    margin: 0;
}
.ebcedinfo {
    text-align: center;
}
.ebcedfooter {
    padding: 30px 10px;
    background-color: #2d2d2d;
    color: #ffffff;
    text-align: center;
}

@media screen and (max-width: 972px) {
    .footer-cont{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .block-cont{
        align-items: center;
    }
    .main{
        justify-content: center;
    }
}
