@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Mooli&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
    background: linear-gradient(to bottom, #112cb8, #020b2e);
}

header {
	display:flex;
	justify-content: space-between;
	padding: 10px;
	margin-bottom: 20px;
	margin-top: 10px;
}
.logo-container img {
	position: absolute;
	left: 30px;
	top: 30px;
	max-width: 100%
}

a.join-button {
	position: absolute;
	right:30px;
	top:30px;
	font-size: 20px;
	font-family: Arial, Helvetica, sans-serif;
	background-color: white;
	color:#1D26A2;
	padding: 20px 20px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
}

.join-button:hover {
	background-color: #1D26A2;
	color: white;
}

nav {
	background-color: #12838A;
	margin-bottom: 14px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	padding: 10px;
	font-weight: bold;
}

nav ul {
	display: block;
	margin-left: 0;
	font-size: 16px;
   }

nav li {
	display: inline-block;
	padding: 0 25px;
	text-decoration: none;
	margin-bottom: 0;
}

nav a:hover {
	color: #090C85;
}

nav a {
	text-decoration: none;
	color: #fff;
}

.wrapper {
	width: 960px;
	margin-left: auto;
	margin-right: auto;
    background-color: rgba(255, 255, 255, 0);
    padding: 20px;
	margin-bottom: 45px;
}

.center-image-container {
	display:flex;
	width: 960px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	justify-content: center;
	align-items: center;
    max-width: 100%;
    height: 250px;
}

.text-box-container {
    display: flex;
	background-color: #12838A;
	margin-bottom: 14px;
}

.text-box {
    flex: 1;
    padding: 20px;
    margin: 10px;
    background-color: #f0f0f0;
    box-sizing: border-box;
}

h2 {
	color: #131086;
	font-size: 20px;
	font-family: Arial, Helvetica, sans-serif;
}

ul {
	font-size: 15px;
	font-family: Arial, Helvetica, sans-serif;
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Adjust alignment as needed */
}

.newsletter-form {
    max-width: 600px;
	background-color: #12838A;
    padding: 20px;
    border: 1px solid #ccc;
}

.newsletter-image {
    max-width: 400px; /* Adjust the width as needed */
}



label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

input[type="submit"] {
    background-color: #007A8F;
    color: #fff;
    cursor: pointer;
}

footer {  
 text-align: center;
background-color: #12838A;
 color: #E2E2E2; 
 height:10px;
   }