@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;400;500;600;700;800;900&family=Merriweather+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Constants */
body {
    background-color: #f5f5f5;
    color: #232129;
    font-family: 'Catamaran',
        sans-serif;
}

.thin {
    font-weight: 300;
}

.light-bg {
    background-color: #f5f5f5;
}

.dark-bg {
    background-color: #232129;
}

.main-bg {
    background-color: #f5f5f5;
}

/* Navbar */

.navbar-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.3;
}

.card {
    border: none;
    background-color: transparent;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -2px;

}

.image-container {
    position: relative;
}

.image-flash {
    position: absolute;
    bottom: 5%;
    min-width: 30%;
    left: -2px;
    background-color: #7E807B;
}

.author {
    color: #f5f5f5;
    margin: 4px;
    text-transform: uppercase;
}

.masthead {
    margin-top: 10px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    height: 33vh;
    width: 100%;
}

.masthead-text {
    background-color: #7E807B;
    color: #f5f5f5;
    position: relative;
}

.masthead-image {
    position: relative;
    overflow: hidden;
}

.masthead-image:after {
    content: "";
    position: absolute;
    top: 0;
    right: 90%;
    height: 100%;
    width: 150%;
    background: #7E807B;
    -webkit-transform: skew(15deg);
    -moz-transform: skew(15deg);
    transform: skew(15deg);
    z-index: 100;
}

.post-link {
    text-decoration: none;
    color: #232129;
}

.post-link:hover,
.page-link {
    color: #866D69;
}

.post-title {
    margin-top: 20%;
    margin-left: 5%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -2px;

}

.post-subtitle {
    margin-left: 5%;
    color: lightgray;
}

.btn-signup {
    background-color: #866D69;
    color: #f5f5f5;
}

.btn-signup:hover,
.btn-signup:active {
    background-color: #f5f5f5;
    color: #866D69;
}

.btn-signout {
    background-color: #8D8573;
    color: #f5f5f5;
}

.btn-signout:hover,
.btn-signout:active {
    background-color: #f5f5f5;
    color: #8D8573;
}

.link {
    color: #23BBBB;
    text-decoration: none;
}

.link:hover,
.link:active {
    color: #445261;
    text-decoration: underline;
}

.btn-like {
    color: #E84610;
    border: none;
    background: transparent;
}

.btn-like:hover,
.btn-like:active {
    color: #E84610;
    background: transparent;
    border: none;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: black;
    /* Changing the color of the control icons */
}

.carousel-control-next,
.carousel-control-prev {
    outline: none;
    border: none;
}

.full-height {
    min-height: 100vh;
    /* This makes sure your page occupies the whole viewport height */
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.carousel-container {
    width: 100%;
    max-width: 800px;
    /* Adjust based on your preference */
    margin: auto;
    /* Center the container */
}