/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
}

/* Background Styling */
.background {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    background: url('background.jpg') no-repeat center center/cover;
    text-align: center;
}

/* Content Styling */
.content {
    padding: 2rem;
    max-width: 580px;
}

.footer {
    padding: 2rem;
    color: #FFF;
    text-align: center;
    max-width: 750px;
}

h1 {
    color:#FFF;
    font-size: 1.5rem;
    font-weight:300;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
}

h2 {
    color:#FFF;
    font-size: 1.2rem;
    font-weight:400;
    margin-bottom: 0.5rem;
}

p {
    color:#FFF;
    font-weight:300;
    font-size: 0.9rem;
}

.big {
    font-size: 1.2rem;
}

ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0; /* Remove padding */
    margin:0;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center the items horizontally */
    justify-content: center; /* Vertically center within the container */
}

ul li {
    color: #FFF; /* Set text color */
    position: relative; /* To position custom bullets */
    margin-bottom: 4px; /* Optional: Add space between list items */
    font-weight: 300;
    font-size: 1.2rem;
}

ul li::before {
    content: '\2022'; /* Unicode character for a bullet point */
    color: #b9181b; /* Bullet color */
    font-size: 20px; /* Size of the bullet */
    position: absolute;
    left: -25px; /* Position the bullet to the left of the text */
    top: 0; /* Adjust vertical position if needed */
}

img {
    max-width:100%;
    margin-bottom:1rem;
}

#mc_embed_signup {
    font-family: 'Noto Sans', sans-serif !important;
    color: #FFF !important;
    background: none !important;
    clear: left;
    font-size: 0.9rem; !important;
    width: 100% !important;
    font-weight: 300 !important;
}

#mc_embed_signup form {
    margin: 20px 0 0 0 !important;
}

#mc_embed_signup h2 {
    display: none;
}

#mc_embed_signup .button {
    clear: both;
    background-color: #b9181b !important;
    border: 1px solid #FFF !important;
    border-radius: 0px !important;
    transition: all 0.23s ease-in-out 0s;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 0.9rem; !important;
    font-weight:300 !important;
    height: 32px;
    line-height: 32px;
    margin: 0 5px 10px 0;
    padding: 0 22px;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    white-space: nowrap;
    width: fit-content;
    width: -moz-fit-content;
}

#mc_embed_signup .indicates-required {
    display: none;
}

#mc_embed_signup .mc-field-group input {
    border-radius: 0px;
    border: 1px solid #fff;
    background: none;
    color:#FFF;
    font-weight:300 !important;
}

@media only screen and (max-width: 768px) {
    .content {
    padding: 1rem;
   
}
    
}

