/* GLOBAL */
* {
    box-sizing: border-box;
}

a {
    color: #e36366
}

a:hover {
    color: #000;
    text-decoration: none;
}

.page-container {
    position: relative;
    min-height: 100vh;
}

.container-wrap {
    padding-top: 100px;
}

.dropdown--custom-active.active {
    background-color: #e36366;
}

.dropdown--custom-item:active {
    background-color: #da9f94;
}

.dropdown--custom-item:hover {
    background-color: #acc5b2;
}

.embed-responsive-9by16::before {
    padding-top: 175%;
}

.navbar--custom-height {
    padding: 15px;
}

.navbar--custom-title {
    font-family: 'Rock Salt', cursive;
    letter-spacing: .5em;
    margin-left: 15px;
}

.splash--custom-text {
    font-weight: bold;
    text-shadow: 2px 2px 2px white, 0 0 25px white, 0 0 5px white;
}

h1 .display-4 .splash-custom-text {
    color: red;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: #e36366;
    color: #fff;
    font-size: .85rem;
    padding: 15px 30px;
}

/* INDEX */
.splash, .content-splash {
    background-image: url("../images/nature-4145029_1920.jpg");
    background-size: cover;
    background-position: 0 90%;
}

.splash {
    height: 400px;
}

.content-splash {
    height: 200px;
    padding: 1.5rem;

}

.about {
    width: 80%;
    margin: 50px auto;
}

.content--option-cards, .category--option-cards {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content--option-cards {
    width: 60%;
}
.category--option-cards {
    width: 80%;
}

.content-option-card, .category--option-card {
    margin: 20px auto;
    padding: 0;
}

.content--card-text {
    text-align: center;
}

.card-body span  {
    font-size: .85rem;
}



/* MEDIA QUERIES */

@media only screen and (min-width: 768px) {
    .about {
        width: 60%;
    }
}

@media only screen and (max-width: 320px) {
    .navbar--custom-title {
        font-family: 'Rock Salt', cursive;
        letter-spacing: .3em;
        margin-right: 0;
    }
}