@import url('https://fonts.googleapis.com/css2?family=Gothic+A1&display=swap');

body {
	font-family: "Gothic A1", sans-serif;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.first-enter {
	width: 300px;
}


.second-enter {
	width: 150px;
}


.third-enter {
	width: 70px;
}


.door1 {
	width: 154px;
}

.door2{
	width: 300px;
}

.destination {
	width: 70px;
}

.another-grid {
	display: grid;
	grid-template-columns: repeat(8, 70px);
	gap: 0;

}

.another-grid img {
	width: 100%;
	height: 100%;
	display: block;
	width: 70px;
}

.item {
	position: relative;
	overflow: hidden;
}

.item .overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.3);
	opacity: 0;
}

.item:hover img {
	border-radius: 50%;
}

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

figure img {
	width: 300px;

}

figcaption a {
	color: black;
	text-decoration: none;
}