*{
    box-sizing: border-box;
}

body{
    font-family: Arial, sans-serif;
    background-color: black;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.container{
    width: 520px;
    height: auto;
    min-height: 100px;
    margin: 100px auto;
    background-color: black;
    border-radius: 5px;
    border: 1px solid blue;
    box-shadow: inset 0 0 0.5em 0 blue;
    >.base{
        >h4{
            font-size: 26px;
            text-align: center;
            font-weight: normal;
            margin-top: 0;
            box-shadow: 0px 2px #bababa;
            font-size: 34px;
            color: blue;

        }
    }
    >.block{
        width: 135px;
        padding: 5px 20px;
        margin-left: 20px;
        display: inline-block;
        >.title{
            font-size: 20px;
            color: white;
            text-align: left;
            font-weight: normal;
            line-height: 0.5;
            letter-spacing: 0.5px;
            word-spacing: 2.7px;   
        }
        
    }
}