/* Basic Reset and Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styling */
.site-header {
    background-color: dodgerblue;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 0px 0px 3px 0px;
}

.site-header img {
	max-width: 100%;
	}

.site-header h1 {
    font-size: 3.3rem;
	position: absolute;
	top: 150px;
	left: 50px;
	line-height: 1.0;
}

.site-header small {
	font-size: 1.5rem;
	color: dodgerblue;
	}

/* Main Content Area */
.main-content {
    padding: 2rem;
    text-align: center;
}

.main-content h2 {
    margin-bottom: 1.5rem;
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Large Buttons */
.large-button {
    flex: 1;
    max-width: 400px;
	min-height: 150px;
    padding: 1rem;
    font-size: 1.6rem;
    color: #fff;
	text-shadow: 1px 1px 1px #000000;
    background-color: dodgerblue;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 1rem;
	box-shadow: 5px 5px 5px #8f8f8f;
}

.large-button:hover {
    background-color: #007bb5;
}

/* Footer */
.site-footer {
    color: #000;
    text-align: center;
	align-items: center;
	padding:5px 0px;
}

/* Mobile Styles */
@media only all and (max-width: 47.938rem) {
    .site-header {
        flex-direction: column;
        text-align: center;
    }

	.site-header img {
		/*min-height: 180px;*/
	}

    .site-header h1 {
	font-size: 2.0rem;
	position: absolute;
	top: 20px;
	left: 10px;
    }

	.site-header small {
	color: #ffffff;
	}

    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .large-button {
        width: 90%;
        max-width: none;
		padding: none;
    }
}
