body {
    display: flex;
    flex-direction: row;
    align-items: start;
    overscroll-behavior: none;
    height: 100vh;
    justify-content: space-evenly;
    margin: 0px;
    font-family: sans-serif;
    box-sizing: border-box;
}

.image-container {
    width: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
    gap: 20px;
    height: 90vh;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    margin-inline-start: 20px;
}

.image-container::-webkit-scrollbar {
    display: none;
}

.text-container {
    width: 500px;
    height: 90vh;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    font-size: 16px;
}

.home-button-container {
	position: fixed;
	bottom: 40px;
	right: 50px;
	z-index: 1000;
}
.home-button {
	filter: blur(1px);
	transition: filter 0.5s ease;
    user-select: none;
    color: #687677;
}
.home-button:hover {
	filter: blur(0px);
	cursor: pointer;
}