
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2&display=swap');


header {
    margin: 0px 75px;
}

body {
    background-color:black;
}


h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 30px;
    font-weight: bold;
    
}

h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 14px;
}

p {
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
}

ul {
    list-style: disc;
    margin: 0;
}

li {
    font-family: 'Exo 2', sans-serif; 
    font-size: 12px;
}

footer {
    text-align: center;
    margin: 30px;
    font-size: small;
}

section {
    padding: 0px 150px;
}

#wrapper {
    margin: 0px 75px;
    margin-top: 0px;
    padding: 0px;
    background-color:#fae4d5;
    height: 400px;
}

.container {
    width: 960px;
    margin: 0px auto;
}

#wrapper-signup {
    margin: 0px 75px;
    margin-top: 0px;
    padding: 0px;
    background-color:#fae4d5;
    height: 600px;
}

#contact {
    background-color:#272627;
    padding: 25px;
    margin: 0px 75px;
}

.container-contact {
    display: flex;
    justify-content: space-between;
}

nav {
	background-color:#272627;
	margin: 0px;
	text-align: center;
}

nav ul {
	margin-left: 0;
	font-size: 18px;
	padding: 20px;
	color: white;
  	text-decoration: none;
}

nav li {
	display: inline-block;
	padding: 0 12px;
	margin-bottom: 0;
	font-family: 'Orbitron', sans-serif;
	color: #fcd867;
  	font-weight: absolute;
    font-size: 14px;
}

nav a {
	color: #fcd867;
	font-weight: normal;
	text-decoration: none;
	font-size: 14px;
}

nav a:hover {
	color: #F2E4C1;
}

.text-color {
    color:#fcd867
}

.banner {
    margin: 0px 75px;
}

.banner img {
    width: 100%;
    height: 200px;
    display: block;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    display: none;
    position: absolute;
    padding-top: 5px;
    text-align: left;
    background-color: #272627;
    min-width: 200px;
}

.dropdown-content a {
    display: block; /* Make each sub-option a block element */
    padding: 5px; /* Add padding for better spacing */
    padding-left: 10px;
    text-decoration: none;
    font-size: x-small;
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    display: block;
    opacity: 0.95;
}

.alignleft {
	float: left;
	margin-right: 20px;
}

button {
    font-family: 'Orbitron', sans-serif;
}

.button-container {
    text-align: center;
    margin-top: 50px;
}

.rounded-button {
    padding: 25px 55px;
    border: none;
    border-radius: 10px;
    background-color: #272627;
    color: #fcd867;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rounded-button a {
    color: #fcd867;
    text-decoration: none;
}

.rounded-button:hover {
    background-color: #525251;
}

/* ------- MAILCHIMP ---------*/

.rounded-button-signup {
	margin-top: 10px;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    background-color: #585758;
    color: #fcd867;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	font-family: 'Orbitron', sans-serif;
}

.rounded-button-signup a {
    color: #fcd867;
    text-decoration: none;
}

.rounded-button-signup:hover {
    background-color: #3b3b3b;
}

form {
    background-color: transparent;
    padding: 0px 10px;
    padding-right: 100px;
    width: 70%;
    margin: 20px 40px;
}

label {
    display: inline-block;
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
}

input {
    width: 70%;
    padding: 5px 10px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    margin-left: auto;
    margin-top: -7px;
}

.mc-field-group {
    display: flex;
    flex-direction: row;
    width: 75%;
}

.mc-field-group label {
    margin-bottom: 4px;
}

.mc-field-group input {
    margin-bottom: 22px;
}

textarea {
    width: 100%;
    height: 100px; /* Adjust the height as needed */
    padding: 8px; /* Adjust padding as needed */
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none; /* Prevent users from resizing the textarea */
}

.asterisk {
	color: red;
}

.indicates-required {
	margin-bottom: 22px;
	font-family: 'Exo 2', sans-serif;
	font-size: 10px;
}