@charset "UTF-8";
/* CSS Document */
body {
    margin: 0;
    background-color: #fff; /* White background for the body */
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #1c1c1c;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.9em;
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #1c1c1c;
    text-transform: uppercase;
    text-align: center;
}

h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #1c1c1c;
    text-transform: uppercase;
    text-align: center;
}

h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 900; /* Adjust to 800 or 900 for thicker text */
    color: #1c1c1c;
    text-transform: uppercase;
    text-align: center;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #1c1c1c;
    font-weight: 400;
}

#navigation {
    background-color: #fff; /* White background for the navigation */
    color: #1c1c1c;
    padding: 10px 0;
    text-align: center;
}

#navigation ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center; /* Center the list items */
}

#navigation li {
    display: inline-block; /* Display items horizontally */
    margin-right: 20px;
}

#navigation li a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #1c1c1c;
    text-transform: uppercase;
    text-decoration: none;
}

#container {
    width: 960px;
    margin: 0 auto;
    background-color: #fff; /* White background for the content */
    padding: 20px;
    flex: 1; /* Take remaining vertical space */
}

#logo {
    clear: both;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

#logo img {
    display: block;
    position: relative;
    padding-top: 75px;
    padding-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

footer {
    background-color: #fff; /* White background for the footer */
    padding: 10px 0;
    text-align: center;
    margin-top: auto; /* Pushes footer to the bottom */
}

.footer-content {
    display: inline-block; /* Ensures content is centered horizontally */
}

.footer-content a {
    display: inline-block;
    margin: 0 10px; /* Adjust spacing between icons if needed */
}

.footer-content img {
    width: 20px; /* Adjust the size of the Instagram icon as needed */
    height: auto; /* Maintain aspect ratio */
}
