/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Creamy white background */
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Arial Black", sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}
 /*nec/*


/* Header */
header {
    background-color: transparent;
    padding: 20px 0;
    text-align: center; /* Center the content */
}

nav ul {
    list-style: none;
    display: inline-block; /* Display inline */
}

nav ul li {
    display: inline; /* Display inline */
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #f4f4f4;
}
 /*nec/*
  
/* Header */
header {
    background-color: transparent;
    padding: 20px 0;
}

nav ul li a {
    text-decoration: none;
    color: #f4f4f4;
}

nav ul li a:hover {
    color: #a22121; /* Dark red color on hover */
}
/*nec/*

/* Global Styles */
body {
    font-family: 'Merriweather', serif;
    background-color: #222; /* Dark navy background */
    color: #f4f4f4; /* Creamy white text color */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    text-align: center;
}

span {
    display: inline-block;
    font-size: 24px; /* Adjust the size as needed */
    vertical-align: middle;
}



h1, h2, h3 {
    font-size: 24px; /* Adjust the font size as needed */
}

h2 {
    font-size: 32px; /* You can customize the font size of specific headers */
}





/* Dropdown menu styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 160px;
    box-shadow: none;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: rgb(226, 216, 216);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #222;
}

/* Style the button */
.button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 8px 16px; /* Adjust the padding to make the button shorter */
    border: 2px solid rgb(96, 11, 11);
    color: rgb(255, 247, 247);
    text-decoration: none;
    transition: background-color 0.3s;
    text-align: center; /* Center the text within the button */
}

.button:hover {
    background-color: rgb(96, 11, 11);
    color: white;
}


