/* CSS */

/* paragraph CSS */
p {
    text-align: justify;
    font-family: 'Crimson Text', serif;
    font-size: 18px;
}


/* Brand Logo Icon CSS */
i.large.material-icons {
    font-size: 60px;
}

/* header CSS */
h1 {
    font-family: 'Dancing Script', cursive;
}

/* img CSS */
img.responsive-img {
    max-width: 50%;
    height: auto;
    float: left;
    margin-right: 1rem;
}

.center-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* Set the height to 100% to ensure the column takes up the full height */
}

.row-flex {
    display: flex !important;
}

.row-flex .col {
    min-height: 100% !important;
    align-items: center;
    justify-content: center;
}

.inactive {
    pointer-events: none;
    cursor: default;
    opacity: 0.6;
}

.hidden {
    display: none;
}

body {
    min-height: 100vh;
    min-width: 100vw;
    background-image: url('assets/background.jpeg');
    /*position backround image on bottom */
    background-position: bottom;
    /*background image does not repeat */
    background-repeat: no-repeat;
    /*background image is fixed */
    background-attachment: fixed;
    /*background image is centered */
    background-size: 100% 50%;


}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    /* semi-transparent grey */
    z-index: -1;
    /* place the overlay behind all other elements */
}

.nav-title {
    color: black;
    float: right;
    font-size: 1.4vw !important;
    max-width: 30vw;
    overflow: hidden;
    text-overflow: clip;
    line-height: 1em;

}

.col {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.col.inactive {
    opacity: 0.5;
}

.vert-spacer {
    margin-top: 2em;
}

#result.show {
    opacity: 1;

}

#result {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.flex-center {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}