@import url('https://fonts.googleapis.com/css2?family=Open+Sans');

/*========Variables=======*/
:root{
    --bg-color:white;
    --primary-color:#bb2a30ff;
    --primary-color-dark:rgb(128, 31, 35);
    --primary-color-highlight:rgb(217, 83, 87);
    --primary-color-low-opacity:rgba(187, 42, 47, 0.75);
}

* {
    font-family: 'Open Sans', monospace;
}

body {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    min-height: 100vh;
}

::selection {
    color: white;
    background-color: var(--primary-color);
}

a[href^="tel"] {
    color: inherit; /* Inherit text color of parent element. */
    text-decoration: none; /* Remove underline. */
    /* Additional css `propery: value;` pairs here */
  }
