body {
    background-color: #FAF9F6;
}

#Header {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}

#Header h1 {
    min-width: 300px;
    max-width: 500px;

	font-family: "Roboto", sans-serif;
	font-weight: 200;
	font-style: normal;

	color: black;
    text-align: center;
}

#Main {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

.image-container {
    position: relative;
    min-width: 300px; /* Set the width of your container */
    max-width: 500px;
    border-radius: 15px; /* Rounded corners for the image */
    overflow: hidden; /* Ensures content doesn’t overflow outside the rounded corners */
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.text h2 {
    font-size: 18px;
    margin-bottom: 5px;
}

.text p {
    font-size: 14px;
}

.icon {
    font-size: 24px;
}

.page {
	margin-bottom: 30px;
}
