
body {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	/*align-items: self-start;*/
	height: 100vh;
	margin: 0;
	background-color: #f4f4f9;
	font-family: Arial, sans-serif;
}
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	/* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
	/* background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.8)); */
}
header img {
	height: 40px;
	margin-right: 15px;
}
header h1 {
	font-size: 24px;
	margin: 0;
	color: #333;
}
.button {
    margin-top: 40px; /* Remove extra margin to avoid pushing down */
    padding: 15px 30px;
    font-size: 18px;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.button:hover {
	background-color: #0056b3;
}
footer {
	position: sticky;
	bottom: 0;
	width: 100%;
	background-color: #fff;
	text-align: center;
	padding: 10px;
	box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
footer p {
	margin: 0;
	font-size: 14px;
	color: #333;
}
footer a {
	color: #007BFF;
	text-decoration: none;
}
footer a:hover {
	text-decoration: underline;
}

        nav {
            display: flex;
            justify-content: center;
            /*gap: 10px;*/
            width: 100%;
            padding: 15px 0;
            position: absolute;
            top: 60px;
            left: 0;
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
			margin-top: 2px;
        }
        nav a {
            text-decoration: none;
            color: #333;
            font-size: 18px;
            padding: 12px 20px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: #007BFF;
            color: #fff;
        }
        main {
            display: flex;
			justify-content: flex-start; /* Align items at the top */
			align-items: center;
			flex-grow: 1;
			margin-top: 120px;
			flex-direction: column;
			padding-top: 40px;
        }
.responsiveCal {
		position: relative;
		padding-bottom: 75%;
		height: 0;
		overflow: hidden;
		}
.responsiveCal iframe {
		position: absolute;
		left: 10%;		
		top:0;
		width: 80%;
		height: 70%;
		}