html {
    height: -webkit-fill-available;
}

body {
    background-image: url("../img/background.jpg");
    background-size: cover;
    background-color: var(--background-color);
    padding: 0;
    margin: 0;
}

h1 {
    padding-bottom: 0;
    margin-top: 15px;
}

p {
    text-align: center;
}

video {
    width: 14em;
    margin: auto;
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
}

label {
    margin-bottom: 1em;
}

input {
    display: block;
    width: 100%;
    margin-bottom: 1em;
}

ul {
    list-style: none;
}

li::before {
    content: '- ';
}

textarea {
    resize: none;
    width: 100%;
    height: 6em;
    margin-bottom: 1em;
}

.container-body {
    padding: 2em;
    text-align: center;
    max-width: 450px;
}

.container-card {
    background-color: white;
    padding: 2em 1em;
    border-radius: 20px;
}

.container-card:nth-child(2) {
    margin-top: 20px;
}

.carousel-height {
    padding-top: 15px;
    padding-bottom: 15px;
}

.card {
    border-radius: 20px;
    height: 65vh;
    margin: auto !important;
    text-align: center !important;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-text {
    margin-bottom: auto;
}

.carousel-indicators {
    margin-top: 20px;
    position: initial !important;
}

.carousel-indicators [data-bs-target] {
    height: 20px !important;
    width: 20px !important;
    border-radius: 10px !important;
    border: none !important;
}

.btn-primary {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
    --bs-btn-active-bg : var(--main-color-hover);
    --bs-btn-active-border-color: var(--main-color-hover);
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--main-color-hover);
    border-color: var(--main-color-hover);
}

.btn.disabled, .btn:disabled {
    color: #fff;
    background-color: var(--main-color-disabled);
    border-color: var(--main-color-disabled);
}

.bg-primary {
    background-color: var(--main-color);
}

.img-detective {
    max-width: 5em;
    height: 30%;
    margin: 1em auto 2em auto;
}

.img-detective-question {
    display: block;
    width: 25%;
    margin-top: 0;
    margin-bottom: 1em;
}

#overlay {
    background: #ffffff;
    color: #666666;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 70%;
    opacity: .90;
}

.text-primary {
    color: var(--main-color) !important;
}

.text-white {
    color : white;
}

#overlay-startpage {
    background: #ffffff;
    color: #383838;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 70%;
    opacity: .90;
}