/* Basic reset to ensure consistency across browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Futura Lt BT', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.background-cover {
    background-image: url('background.png');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* Add any additional styling for your content here */
}

.footer {
    position: absolute;
    bottom: 119px; /* Slight upward shift */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.headline {
    font-size: 20px; /* Adjust font size as needed */
    color: #d3d3d3; /* Adjust text color as needed */
    margin-bottom: 1px; /* Space between headline and social media icons */
}
.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-media a {
    margin: 0 0.1px;
    display: inline-block;
    background: none; 
}

.social-media img {
    width: 80px; /* Adjust the size of the icons */
    height: auto;
    display: block; /* Ensure the image is displayed as a block element */
    background: none;
}

@media (max-width: 600px) {
    .social-media img {
        width: 60px;
     }
    .headline {
        font-size: 15px; /* Adjust font size for smaller screens */
    }
}