@charset "UTF-8";



header {
	background: url("images/Banner.jpg");
    width: 100% !important;
    min-height: 400px;
    margin: 5px auto;
    text-align: center !important;
    padding: 25px;
	color: white; /* Set text color to white */
}

#banner-text-box {
    position: absolute;
    top: 20%; /* Adjust position as needed */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background:rgba(0,0,0,0.40);/* Semi-transparent background for text box */
    padding: 20px;
    border-radius: 30px;
}

#logo-container {
    position: absolute;
    bottom: 20px; /* Adjust position as needed */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
	background:rgba(0,0,0,1.00);
	border-radius: 30px;
}

#logo {
    max-width: 150px; /* Adjust logo size as needed */
    height: auto;
}

.content-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    margin: 20px; /* Space around the container */
}

#large-box {
    background-color:rgba(0,0,0,1.00); /* Light background color for the large box */
    padding: 40px;
    text-align: center;
    width: 750px; /* Set width to control size */
    border-radius: 30px; /* Rounded corners */
	color: white; /* Set text color to white */
	margin-bottom: 20px; /* Add margin to the bottom for spacing */
}

#small-box {
    background-color:rgba(7,7,7,1.00); /* White background for the small box */
    padding: 20px;
    text-align: center;
    width: 750px; /* Set width to control size */
    border-radius: 30px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
	color: white; /* Set text color to white */
}

#body-image {
    max-width: 100%; /* Responsive image */
    height: auto;
}

body {
    font-family: 'Roboto', sans-serif; /* Use Roboto font */
    margin: 0; /* Reset default margin */
    line-height: 1.6; /* Improve readability */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif; /* Ensure headings also use Roboto */
    font-weight: 700; /* Use bold weight for headings */
}

.subscription_form {
    width: 750px;
    min-height: 350px;
    background:rgba(0,0,0,1.00);
    margin: 5px auto;
    text-align: center !important;
    padding: 25px;
	border-radius: 30px; /* Rounded corners */
}

.content_text {
    width: 760px;
    min-height: 200px;
    background: rgba(255, 30, 5, 0.00);
    margin: 25px 0px;
    padding: 10px 100px 10px 100px;
}


.footer {
    background-color:rgba(0,0,0,1.00); /* Background color for the footer */
    color: white; /* Text color */
    padding: 20px 0; /* Padding for the footer */
}

.footer_container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
}

.footer_sub_boxes {
    margin: 10px 0; /* Space between footer sub boxes */
}

#footer_logo img {
    max-width: 150px; /* Adjust logo size as needed */
    height: auto; /* Maintain aspect ratio */
}

.socials {
    display: flex; /* Use flexbox for social icons */
    justify-content: center; /* Center social icons */
    gap: 15px; /* Space between icons */
}

.socials i {
    color: white; /* Change this to your desired color */
    transition: color 0.3s; /* Optional: Add a transition effect for hover */
}

.socials i:hover {
    color:rgba(190,255,0,1.00); /* Change this to the color you want on hover */
}
#copyright {
    margin-top: 20px; /* Space above copyright text */
}











