@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;1,500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins",sans-serif;
}
html{
    font-size: 1vh;
}
.background{
    background: url("../img/bg.jpg") no-repeat;
    background-position: center;
    background-size:cover ;
    height: 100vh;
    width: 100%;
	overflow: hidden;
}
.contact{
    background-color: #2DABFF;
	position: fixed;
	height: calc(100vh - 4vh - estimatedHeaderContentHeight); /*100vh - 75px*/
    width: 100vw;
	top: 75px;
    left: 100vw;
}
.content{
    /*background-color: #1AFF00;*/
	position: fixed;
	height: calc(100vh - 75px);
    width: 100vw;
	top: 75px;
    /*padding: 2vw;*/
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 2vw;
    padding-right: 2vw;
    display: flex;
    gap: 1vw;
    overflow: auto;
    align-items: center;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2vw;
}

/*.category{
    background-color: aqua;
}
.toptitle{
    background-color: orange;
    text-align: center;
}
.cat-objects{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 1vw;
}
.object{
    background-color: red;
    text-align: center;
}
.thumbnail{
    width: 12vw;
}
.thumbnail img{
    width: 12vw;
}*/

.category {
    /*vertical-align: middle;*/
    flex: 0 0 auto; /* Prevent categories from shrinking or growing */
    margin-right: 6vh; /* Spacing between categories */
    /* Other styling as needed */
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 2vh;
    backdrop-filter: blur(15px);
    color: #FFF;
    height: fit-content;
    padding: 1vh;
    scroll-snap-align: start;
}

.toptitle {
    /*background-color: orange;*/
    text-align: center;
    vertical-align: middle;
    width: 100%; /* Full width */
    height: 6vh;
    /*line-height: 3vw;*/
    overflow: hidden;
    padding: 1vh;
    font-size: 2.5rem;
}

.cat-objects {
    display: flex; /* Flex container */
    flex-direction: row; /* Arrange columns in a row */
}

.cat-column {
    display: flex; /* Make each column a flex container */
    flex-direction: column; /* Arrange items in a column */
    /*margin-right: 20px; *//* Optional spacing between columns */
}

.object {
    /*background-color: red;*/
    text-align: center;
    width: 20vh; /* Width of each object */
    margin: 1vh;
    background: transparent;
    backdrop-filter: blur(15px);
    border-radius: 1vh;
    background-color: rgba(255, 255, 255, 0.15);
    /*box-shadow: 5px 5px 5px rgba(150, 150, 150, 0.5);*/
}
.filler {
	background: transparent;
	backdrop-filter: blur(0px);
}
.filler div{
	border: hidden;
	background: none;
}
.thumbnail {
    width: 100%;
    overflow: hidden;
    border-radius: 1vh;
    /*border: 0.25vh solid rgba(255,255,255,0.5);*/
}

.thumbnail img {
    width: 100%;
    display: block;
    border-radius: 0.25vh;
}
.title {
    display: block;
    font-size: 1.75rem;
}
