body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #0e3b3b;
    
}

header {
    position: relative; /* Make the header a positioned parent */
}

.banner {
    position: relative; /* Make the banner a positioned parent for social links */
    width: 100%; /* Ensure banner takes up full width */
}

.banner img {
    width: 100%; /* Stretch the image to the full width of its container */
    display: block;
    max-height: 600px;
}

main {
    text-align: center;
    padding: 50px;
}

button {
    padding: 10px 20px;
    background-color: #056969;
    color: #ffffff;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

button:hover {
    background-color: #0056b3;
}

.banner {
    text-align: center; /* Center aligns the content horizontally */
}

.banner img {
    display: block; /* Ensures the image is treated as a block element */
    margin: 0 auto; /* Centers the image horizontally */
}body {
     font-family: 'Slackey', cursive; /* Apply Slackey font to the entire body */
     color:white;
 }

/* Optionally, you can specify font for specific elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Slackey', cursive; /* Apply Slackey font to headings */
}

p {
    font-family: 'Slackey', cursive; /* Apply Slackey font to paragraphs */
}

.info-paragraph{
    margin-top: 50px !important;
}

/* Apply Slackey font to other elements as needed */


