/* CSS Document */
body{
    overflow-x: hidden;
}

html{
    overflow-x: hidden;
}

.verticalplaceholder{
    height: 70px;
    width: 100%;
}

.menubutton{
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.debug{
    border: 3px solid black;
}

.caption{
    height: 150px;
    width: 105%;
    background-image: url("assets/images/nature_header.jpeg");
    background-color: #cccccc;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    text-align: center;
    align-items: center;
    z-index: -1;
}

.caption span{
    font-family: 'Poiret One';
    font-size: 60px;
    color: white;
    font-weight: bold;
}

.placeholdercaption{
    height: 25px;
    width: 105%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobileimage.img{
    width: 110%;
}

.imageseperator{
    height: 3px;
    width: 105%;
}

.countercontainer{
    margin-bottom: 20px;
}

.timerheadline{
    background-color: black;
    color: white;
    font-family: 'Poiret One';
    font-size: 30px;
    margin-bottom: 10px;
}

.timercontent{
    font-family: 'Poiret One';
    font-size: 20px;
    font-weight: bold
}

.home_image_container{
    width: 100vw;
    height: 50vh;
}

.categorycard{
    margin-bottom: 10px;
    width: 100%;
    height: 200px;
    background-color: black;
    transition: 500ms ease-out;
}

.cardimage{
    opacity: 0.2; 
    height: 100%; 
    width: 100%; 
    object-fit:cover;
    transition: 300ms ease-out;
}

.imagecard {
    margin-bottom: 20px;
    width: 100%;
    height: 250px;
    background-color: black;
    transition: 500ms ease-out;
}

.showimage{
    height: 100%; 
    width: 100%; 
    object-fit:cover;
    transition: 300ms ease-out;
}

.categorycard:hover .cardimage{
    /*box-shadow: 10px 10px 5px #aaaaaa;
    transition: 300ms ease-out 100ms;*/
    /*opacity: 0.8;*/
    opacity: 0.5;
    transition: 300ms ease-out;
}

.footer{
    width: 100vw;
    height: 100px;
    background-color: black;
    margin-top: 10vh;
}

.button{
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 40px;
    width: 200px;
    background-color: #D4A373;
    border-radius: 20px;
}