body {
    background-color: #000;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: auto; /* Allow scrolling */
}

.initial-image-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensure that the image doesn't overflow the container */
    position: fixed; /* Keep the initial image in place */
    top: 0;
    left: 0;
    z-index: 1;
    transition: opacity 0.5s; /* Smooth transition for hiding */
}

.initial-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container without distorting */
}

.hidden {
    opacity: 0; /* Hide the element */
    pointer-events: none; /* Disable interactions */
}

.main-content {
    width: 100%;
    padding-top: 80vh;
    padding-bottom: 5vh;
    background-color: #000;
}

.container {
    text-align: center;
    padding: 20px; /* Add some padding to the container */
}

.headerSection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 300px; 
    margin: 0 0 50px 0;
}

.icons {
    max-width: 100%;
    height: auto;
    width: 300px; 
}

.menuList {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.menuList img {
    width: 400px;
}

.menuChoice {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.socialIconsStyle {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.socialIcons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 15%;
}

.socialIcons img {
    width: 3em;
    height: 3em; 
}

.followImg {
    max-width: 100%;
    height: auto;
    width: 15%;
}

@media (max-width: 768px) {
    .logo {
        width: 125px; 
        margin: 0 0 30px 0;
    }
    
    .icons {
        width: 140px; 
    }

    .socialIcons {
        width: 40%;
    }

    .menuList img {
        width: 200px;
    }

    .followImg {
        width: 29%;
    }

    .socialIcons img#locationIcon {
        width: 1.5em;
        height: 1.75em; 
    }

    .socialIcons img {
        width: 1.75em;
        height: 1.75em; 
    }
}
