*, ::after, ::before {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

button::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="tel"]::-moz-focus-inner, a::-moz-focus-inner, .button::-moz-focus-inner {
    border: 0 !important;
}

body {
    margin: 0;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    text-align: start;
    font-family: 'Roboto', sans-serif;

    min-width: 350px;
}

a {
    color: #111111;
    /* transition: all ease-in-out 0.2s; */
    text-decoration: underline;
}

a:hover, a:focus, a:active {
    text-decoration: none;
}

p {
    margin: 15px 0;
}

p:first-child:not(.h1, .h2, .h3, .h4) {
    margin-top: 0;
}



p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    body {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    body {
        font-size: 16px;
    }

    p {
        margin: 3vw 0;
    }
}