html {
  font-size: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: 20px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {

  position: relative;
  min-height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6, .bo-button {
/*    font-family: 'Dosis', sans-serif;*/
        font-family: 'Poppins', sans-serif;
}

:root {
    --unit-100vh: 100vh;
}

@supports (height: 100dvh) {
    :root {
        --unit-100vh: 100dvh;
    }
}

.curved-block::after {
    content: "";
    position: absolute;
    left: 0;
    top:100%;
    width: 100%;
    height: 125px;
    background: inherit;
    clip-path: ellipse(55% 50% at 50% -20%);
}

.content-width {
    width: 100%;
    max-width: 100%;
    /* Apply styles for larger screens */
    @media (min-width: 768px) {
        max-width: 30%;
    }
}