@font-face {
    font-family: 'BrushUpW01';
    src: url('BrushUpW01-Regular.eot');
    src: url('BrushUpW01-Regular.eot?#iefix') format('embedded-opentype'),
        url('BrushUpW01-Regular.woff2') format('woff2'),
        url('BrushUpW01-Regular.woff') format('woff'),
        url('BrushUpW01-Regular.ttf') format('truetype'),
        url('BrushUpW01-Regular.svg#BrushUpW01-Regular') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'BrushUpW01', sans-serif;
}

body {
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
	background-attachment: fixed;
}

.header {
    width: 100%;
    height: 100px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header img {
    width: 289px;
    height: 60px;
}

.container {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    height: calc(100% - 100px);
    padding-top: 100px;
    text-align: center;
	gap: 50px;
	margin-left: 30px;
    margin-right: 30px;
}

.item {
    position: relative;
    width: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; */
	cursor: pointer;
}

.item img {
    max-width: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.item:hover .overlay {
    opacity: 1;
}

.overlay {
    font-size: 16px;
    color: #333;
    text-align: center;
    padding: 10px;
}

.overlay-btn {
    position: absolute;
    bottom: -10px;
    background-color: #442917;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 30px;
}



@media screen and (max-width: 800px) {
	.container {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.overlay {
		opacity: 1;
		background-color: transparent;
	}
	.item {
		width: 270px;
	}
}
@media screen and (max-height: 660px) {
	.container {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.overlay {
		opacity: 1;
		background-color: transparent;
	}
	.item {
		width: 270px;
	}
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #939598; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #939598; 
}