* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    font-family: 'Roboto', sans-serif;
}

.header {
    width: 100%;
    padding: 25px;
    border-bottom: 1px solid red;
}

.logo {
    max-width: 250px;
}

.mainMsg {
    color: #465a75;
    background-color: #f6f7f8;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
}

.content {
    max-width: 900px;
    margin: auto;
}

h2 {
    color:#bf000b;
}

p {
    margin-top: 25px;
    text-align: justify;
}

.contactButton {
    background-color: white; 
    border: 2px solid #f44336;
    color: black; 
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    margin-top: 25px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.contactButton:hover {
    background-color: #f44336;
    color: white;
}

.mainSpecs {
    padding: 25px;
    width: 100%;
}

.mainSpecsContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.specsBlock {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 25px;
    padding-bottom: 25px;
}

.specsBlock .spec {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.specsBlock .spec h3 {
    text-align: center;
    font-size: 1em;
}

.specsBlock .spec i {
    border: 2px solid red;
    border-radius: 50%;
    padding: 25px;
    font-size: 2em;
    color: red;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .specsBlock .spec {
        width: 100%;
        margin-top: 25px;
    }
    h2 {
        text-align: center;
    }
    .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 15px;
    }
}