
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
	background-image: url('img/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background {
    width: 100%;
	height: 100%;
    position: relative;
	background-color: rgba(0, 0, 0, 0.0); /* Dark overlay for better readability */
    position: absolute;
    top: 0;
    left: 0;
}

.overlay {
	position: absolute;
	top: 20%;
	width: 100%;
}

.logo {
	position: relative;
	width: 42%;
	left: 22%;
}

@media (max-width: 700px) {
	.logo {
		width: 50%;
		left: 19%;
	}
}

.logo img { 
	width: 100%;
}

.content-box {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* Adjusted width */
    background: rgba(0, 0, 0, 0.0); /* Semi-transparent background */
    padding: 20px;
    border-radius: 8px;
}

.content {
	padding-top: 9%;
    padding-left: 10%;
    color: #161515;
    font-family:'Argent CF';
}
.content p {
    max-height: 200px; /* Example initial max-height */
    overflow: hidden;
    transition: max-height 0.3s ease; /* Smooth transition */
}

.content p.expanded {
    max-height: none; 
}

h1 {
    font-size: 2em; /* Increased size for better visibility */
    margin-bottom: 5px;
    text-align: center;

}


@media (max-width: 990px) {
	h1 {
		font-size: 1.8em; /* Increased size for better visibility */
	}
}
