@charset "utf-8";

h2 {
    position: relative;
    padding: 1.5rem;
    text-align: center;
    font-size: 35px;
}

h2:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #1c28ff;
}


.box2 {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    color: #6091d3;

    background: #FFF;
    border: solid 3px #6091d3;

    border-radius: 10px;

    width: 20%;
    min-width: 300px;
    height: 20%;
}

.box2 p {
    margin: 0;
    padding: 0;
}

@media (min-width:769px) {
    .box2 {
        display: inline-flex;
    }
}

@media (max-width:768px) {
    .box2 {
        display: inline-block;
    }
}