/* Base styles */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: rgb(141, 215, 222);
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}

body {
    background-image: url('CompanyLogoMain.png');
    background-position: center;
    background-size: contain; /* Ensures the image fits within the screen */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps the background image fixed on scroll */
    position: relative;
    z-index: 0;
}

p, h1, h2, h3, .center-text {
    position: relative;
    z-index: 1; /* Ensures the text stays above the background image */
    background-color: rgba(255, 255, 255, 0.235); /* Adds a slight transparent background behind the text */
}

.center-text {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.sticker-section {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    clear: both;
}

.contact {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px; /* Slightly larger than the default size */
    line-height: 1.5; /* Adjusted for better readability */
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    flex: 1; /* Ensures the content expands to fill the available space */
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

header {
    padding: 20px;
}

h1, h2 {
    font-size: 3.0rem;
}

h3 {
    font-size: 2.5rem;
}

h1, h2, h3 {
    margin-bottom: 20px;
    text-align: center;
    color: #000;
}

.centered-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 3px;
    color: whitesmoke;
    position: relative;
    bottom: 0;
    width: 30%;
    margin-top: auto; /* Pushes the footer to the bottom of the page */
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 1024px) {
    h1, h2, h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    h1, h2, h3 {
        font-size: 1.5rem;
    }

    .centered-image {
        width: 75%;
    }

    footer {
        font-size: 0.8rem;
    }
}