@import 'header.css';
@import 'navDrawer.css';
@import 'footer.css';

* {
    box-sizing: border-box; /* Includes padding and border in width calculations */
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

@font-face {
  font-family: 'custom_font';
  src: url('../../fonts/Olibrick.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
}

@media (min-width: 320px){
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px
    }

    h4 {
        font-size: 16px;
    }

    h5 {
        font-size: 14px;
    }
    p {
        font-size: 14px;
    }
}

@media (min-width: 768px){
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 20px
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 15px;
    }

    p {
        font-size: 15px;
    }
}

@media (min-width: 1025px){
    h1 {
        font-size: 45px;
    }

    h2 {
        font-size: 35px;
    }

    h3 {
        font-size: 25px
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    p {
        font-size: 15px;
    }
}

@media (min-width: 1366px){
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 30px
    }

    h4 {
        font-size: 25px;
    }

    h5 {
        font-size: 20px;
    }

    p {
        font-size: 15px;
    }
}

@supports (-webkit-touch-callout: none) {
    button {
        -webkit-appearance: none;
        appearance: none;
    }
}