@font-face {
    font-family: "Acari Sans";
    src: url("../fonts/AcariSans-Regular.ttf");
}

html,
body {
    height: auto;
    color: white;
    font-size: 16px;
}

body {
    height: auto;
    width: auto;
    margin: auto;
    max-width: 2000px;
    background-color: rgb(82, 61, 105);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.navbar {
    background-color: rgb(82, 61, 105);
    overflow: hidden;
    z-index: 1;
}

.navbar a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 24px;
}

.navbar a:hover {
    background-color: rgb(153, 113, 196);
}


.rowWrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.columnWrapper {
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carouselContainer {
    display: grid;
}

#myCarousel {
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
    place-self: center;
}

.backgroundCarouselLayer {
    grid-column: 1;
    grid-row: 1;
    background-image: url("../assets/background-img.jpg");   
    filter: blur(6px);  
}

#myCarousel {
    margin: 2vh;
}

.carousel-item {
    height: 617px;
    background-position: center;
    background-size: cover;
}

.infoText {
    font-size: 18px;
    text-align: left;
    padding: 2em;
    padding-left: 2em;
}

.background-image {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1;
    display: block;
    width: 1200px;
    height: 800px;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

.font-image {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    margin-left: 20px;
    margin-right: 20px;
}

.divider {
    margin-top: 2vh;
    border-left: 1px solid #5f656d; 
    width: 1px;
    height: auto;
  }

#footer {
    bottom: 0;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    clear: both;
    position: relative;
    height: 2rem;
    text-align: center;     
    padding-top: 6px;  
    padding-bottom: 4px;    
    font-size: 14px;   
    color: whitesmoke;
  }


  @media all and (max-width: 500px) {
    .rowWrapper {
        flex-direction: column;
    }

    .divider {
        margin-top: 2vh;
        width: 350px;
        height: 1px;
        border-top: 1px solid #5f656d; 
        align-self: center;
        /* display: none; */
    }
  }