html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: normal 16px / 24px "Roboto", Helvetica, Arial, Verdana, sans-serif;
}

body {
    transition: background-color .5s;
}

.container {
    border: none;
    box-shadow: 0px 0px 10px 0px gray;
    margin: auto;
    max-width: 1100px;
}

.inner {
    display: flex;
}

.center-box {
    position: relative;
    border: none;
    margin: auto;
    width: 60%;
    min-height: 2000px;
    margin-top: 10px;
    padding: 10px;
}

.head {
    width: 100%;
    height: 110px;
    background-color: #f5f5f5;
    position: relative;
    padding: 5%;
}

.Title {
    font-size: 23px;
    font-weight: bold;
}

.grey-txt {
    font-size: 13.5px;
    color: #b4b5bb;
    word-spacing: 10px;
    text-decoration: none;
}

.grey-a {
    color: #b4b5bb;
    font-size: 13.5px;
    text-decoration: none;
}

.grey-a:hover {
    text-decoration: underline;
}

.btn {
    border: none;
    border-radius: 3px;
    outline: none;
    background-color: #006fb7;
    color: white;
    width: 60%;
    padding: 5px;
    margin-top: 10%;
    margin-left: 10%;
    margin-bottom: 25px;
    cursor: pointer;
}

.btn:hover {
    background-color: #3b8ced;
    transition: 0.5s;
}

.Title-name {
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    color: #333333;
}

.read-more {
    border: none;
    border-radius: 2px;
    margin: 10px auto;
    width: 95%;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.read-more:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
}

.read-more-a {
    color: #6ec1e4;
    padding: 15px;
    font-size: 12px;
    text-decoration: none;
}

.container-txt {
    font-weight: bold;
    padding: 18px;
}

@media only screen and (max-width: 750px) {
    .inner {
        flex-direction: column;
    }
    .grey-txt {
        display: none;
    }
    .center-box {
        width: 100%;
    }
    .btn {
        width: 100%;
        margin-left: 0;
    }
    .head {
        text-align: center;
    }
}