/* Font loading */
@import url("fonts/stylesheet.css");

/* Actual CSS */
* {
    font-family: 'Century Gothic';
}


body {
    background-image: url(front_page_background.png);
    background-size: cover;
    min-height: 100vh;
    margin: 0;
}

.heading {
    min-height: 0vh;
}

.main {
    background-size: cover;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;

	margin: 0;
	padding: 0 0 30vh 0;
    width: 100%; min-height: 70vh; 
}

h1 {
    font-family: "Massimo"; 
	text-align: center;
	margin-top: 50px;
	font-size: 70px;
	margin-top: 100px;
	color: #333;
    -webkit-text-stroke: 1px #FFF;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 50px;
	margin-top: 100px;
	flex-wrap: wrap; /* Allow wrapping on smaller screens */
	padding: 0 20px; /* Add some padding for smaller screens */
}

.box {
    font-family: "Massimo Ultra";
	width: 400px; /* Slightly reduced width for better responsiveness */
	height: 200px;
    background: rgba(255, 255, 255, 0.9);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid black;
	font-size: 40px; /* Slightly reduced font size */
	cursor: pointer;
	color: #333;
	font-weight: bold;
	transition: background-color 0.3s ease, transform 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.box:hover {
    background-color: skyblue;
    color: black;
	transform: translateY(-5px); /* Slight lift effect */
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 900px) {
	.h1 {
		font-size: 50px;
		margin-top: 80px;
	}

	.container {
		flex-direction: column;
		align-items: center;
		gap: 30px;
		margin-top: 60px;
	}

	.box {
		width: 80%; /* Make boxes take up more width on smaller screens */
		max-width: 400px; /* Max width to prevent them from becoming too wide */
		font-size: 35px;
		height: 150px;
	}
}

@media (max-width: 480px) {
	.h1 {
		font-size: 35px;
		margin-top: 60px;
	}

	.box {
		font-size: 28px;
		height: 120px;
	}
}