/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow: hidden; /* Prevent scrolling */
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    height: 15vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header h1 {
    margin-bottom: 0.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0; /* Ensure no extra padding */
    margin: 0; /* Ensure no extra margin */
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 75vh; /* Adjusted to fit within the viewport */
}

.hero {
    background: url('img/wabs.jpg') no-repeat center center;
    background-size: contain;
    height: 30vh; /* Adjusted height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-message {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
}

main {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-grow: 1;
}

.option {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 10px;
    width: 40%; /* Adjusted width */
	height:250px;
    text-align: center;
    margin: 0 1rem;
	font-size:20px;
}

.option h3 {
    margin-bottom: 0.5rem;
	font-size:24px;
}

.option p {
    margin-bottom: 1rem;
	font-size:20px;
}

button {
    padding: 0.5rem 1rem;
    background: #333;
    color: #fff;
    border: outset;
    border-radius: 5px;
    cursor: pointer;
	font-size:20px;
}

button:hover {
    background: #555;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 0.5rem 0;
    height: 10vh; /* Adjusted height */
    width: 100%;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
}

.content {
	display: none;
	transition: max-height 0.3s ease-out;
	overflow: hidden;
	position:fixed;
	/*top:50px;*/
	margin:20px;
	margin-top:30px;
	padding:20px;
	border-radius:5px;
	border:outset;
	background-color:white;
	color:black;
	z-index:3000;
	overflow: auto;
	text-align:justify;
	height: 80%;
	width:500px;
	/*max-height: 200px;*/
}

.content.show {
	display: block;
	max-height: 500px; /* Adjust as needed */
	max-width:500px;
}

.close-button {
	cursor: pointer;
	padding: 5px 3px;
	background-color: #dc3545;
	color: white;
	border: none;
	border-radius: 5px;
	float: right;
	font-size:14px;
	width:50px;
}

.bottom-buttons {
	margin-top: 10px;
	font-size:18px;
}

.bottom-buttons .content {
	margin-top: -80px;
	margin-bottom: 10px;
	max-width:500px;
}

/* Mobile devices */
.option-mobile {
	display:block;
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 10px;
    width: 98%; /* Adjusted width */
	height:270px;
    text-align: center;
    margin: 0 1rem;
	font-size:20px;
	overflow-y:auto;
}

.option-mobile h3 {
    margin-bottom: 0.5rem;
	font-size:24px;
}

.option-mobile p {
    margin-bottom: 1rem;
	font-size:20px;
}

.content-mobile {
	display: none;
	transition: max-height 0.3s ease-out;
	overflow: hidden;
	position:fixed;
	/*top:50px;*/
	margin:20px;
	margin-top:30px;
	padding:20px;
	border-radius:5px;
	border:outset;
	background-color:white;
	color:black;
	z-index:3000;
	overflow: auto;
	text-align:justify;
	/*height: 85%;*/
	/*width:500px;*/
	/*max-height: 200px;*/
}

.content-mobile.show {
	display: block;
	max-height: 500px; /* Adjust as needed */
	max-width:500px;
}