@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body, html {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    background-color: #f6e5d9; /* Optional: Background color */
}

main {
    margin-top: 85px;
    width: 100%;
    max-width: 1200px; /* Optional: Set a max-width for the main content */
    padding: 20px; /* Optional: Add some padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent overflow */
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-area{
    background-color: rgba(248, 249, 255, 0.75); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 100%;
    margin: auto;
}

.feature.col {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.main-header{
    font-size: 1.5rem;
    color: #060100;
    line-height: 1.07394083em;
    letter-spacing: 0.076em;
}

.main-header-hr {
    border: 0;
    height: 2px;
    background-color: #060100;
    margin-top: 20px;
    margin-bottom: 20px;
}

.main-header.mail {
    margin-top: 10px;
    margin-bottom: 10px;
}

.fas.fa-phone {
    margin-right: 8px; /* Adjust the value as needed */
}

img.left-side {
    width: 100%;
    height: auto;
}

.pellet-images{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.privacy-content-area {
    padding-top: 20px;
    max-width: 80%;
    margin: auto;
}

@media (max-width: 600px) {
    .main-header {
        font-size: 1.1rem; /* Smaller font size for phones */
    }

    img.left-side {
        width: 60%; /* Shrink the image size for mobile */
        height: auto;
        display: block; /* Ensure the image is treated as a block element */
        margin: 0 auto; /* Center the image horizontally */
    }
}
/*index.html*/
.index-contact-information{
    margin-bottom: 10px;
}
/* privacy.html */
.privacy-content-area {
    max-height: 80vh; /* Limit the height to 80% of the viewport height */
    overflow-y: auto; /* Add vertical scroll if content exceeds the height */
    padding: 20px; /* Optional: Add some padding */
    background-color: #fff; /* Optional: Background color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Add some shadow */
}

/* impressum.html */
.impressum-contact{
    margin-top: 10px;
    margin-bottom: 10px;
}
/* footer */
.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px; /* Adjust this value to match the actual height of the footer */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links li {
    display: inline;
}

.footer-links a {
    text-decoration: none;
    color: #000;
}

.footer-links a:hover {
    text-decoration: underline;
}
