:root {
    --primary-color: #c64f51;
}

@font-face {
    font-family: 'Lobster';
    src: url('/fonts/Lobster-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Applicera fonten på h1–h6 */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lobster', sans-serif;
}


html {
  font-size: 14px;
}

.navbar {
    background-color: #c64f51 !important;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    color: #eee;
    
    padding: 5px 20px 0px 10px;
}


.btn-primary {
    background-color: #c64f51;
    border: none;
}

.btn-primary:hover {
    background-color: #ff4f51;
}

.btn-primary:disabled {
    background-color: #c64f51;
    border: none;
}


@media (min-width: 768px) {
    html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

/* Tweak för att få bort ramen runt H1 */
:where(h1, h2, h3, h4, h5, h6):is(:focus, :focus-visible) {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}


