html, body {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    height: 100%;
    width: 100%;
    background-image: url("background.jpg")
}

.blog-body {
    padding: 0;
    background-color: bisque;
    color: darkslategray;
    border-radius: 5px;
}

h1.titlecard {
    padding: 10px;
    font-weight: bold;
    background-color: maroon;
    color: burlywood;
    text-decoration-color: burlywood;
    text-align: center;
    border-radius: 5px;
}

h1.titlecard a {
    --bs-link-color-rgb: 222, 184, 135; # burlywood
    --bs-link-hover-color-rgb: 222, 184, 135; # burlywood
}

.body {
    color: #3a3a3a;
}

.btn-secondary {
    --bs-btn-color: burlywood;
    --bs-btn-bg: maroon;
    --bs-btn-border-color: maroon;
    --bs-btn-hover-color: burlywood;
    --bs-btn-hover-bg: maroon;
    --bs-btn-hover-border-color: maroon;
    --bs-btn-active-color: maroon;
    --bs-btn-active-bg: burlywood;
    --bs-btn-active-border-color: burlywood;
    --bs-btn-font-weight: 700;
}

a {
    color: maroon;
    overflow-wrap: break-word;
}

h1>a {
    color: inherit;
    text-decoration-color: inherit;
}

.error-popup {
    position: absolute;
    top: 20%;
    left: 25%;
    right: 25%;
    background-color: maroon;
    color: burlywood;
    border-radius: 5px;
}

.modal-header {
    background-color: maroon;
    color:burlywood;
    border: none;
}

.modal-title {
    flex-grow: 1;
}

.modal-body {
    background-color: burlywood;
    border: none;
}

.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: maroon;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

.btn-group {
  flex-wrap: wrap;
  border-radius: 5px;
  overflow: hidden;
}

.btn-group label {
  border-radius: 0;
}
