body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    font-size: 1.2rem;
}



.custom-footer {
    border-top: 1px solid #dee2e6; /* Bootstrap's default border-top color */
    color: #6c757d; /* Bootstrap's text-muted color */
    text-align: center; /* Center the text if that's what you're going for */
    padding: 1rem 0; /* Add some padding for spacing */
    background-color: #f8f9fa; /* Bootstrap's default footer background, adjust as needed */
    margin-top: auto; /* If you're using flexbox in a parent container, this pushes the footer to the bottom */
    width: 100%; /* Ensure it spans the full width */
}


.landing-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px);
    width: 80vw;
    background-color: #000;
    position: relative;
}

    .landing-page-container .container {
        position: relative;
        width: 100%;
        height: 600px;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
    }

.logo {
    position: absolute;
    width: 50%;
    height: 50%;
    cursor: pointer;
    align-content: center;
}



.top-left {
    top: 0;
    left: 0%;
}

.top-right {
    top: 0;
    left: 55%;
}

.bottom-left {
    bottom: 0;
    left: 0;
}

.bottom-right {
    bottom: 0;
    left: 55%;
}



.logo img {
    width: 100%;
    max-width: 30vw;
    height: 80%;
    max-height: 35vh;
    object-fit: contain;
    transition: transform 0.3s ease;
}

    .logo img:hover {
        transform: scale(1.1);
    }

.logo.top-left img:hover {
    filter: sepia(50%) drop-shadow(0 0 20px #1B8212);
}

.logo.top-right img:hover {
    filter: sepia(50%) drop-shadow(0 0 20px #1CEDE5);
}

.logo.bottom-left img:hover {
    filter: sepia(50%) drop-shadow(0 0 20px #E8EE00);
}

.logo.bottom-right img:hover {
    filter: sepia(50%) drop-shadow(0 0 20px #CE2539);
}


.description-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: solid 2px white;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    z-index: 10;
}


.landing-page-container::before, .landing-page-container::after {
    content: '';
    position: absolute;
    background-color: #fff;
}

.landing-page-container::before {
    height: 100%;
    width: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.landing-page-container::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

/*.footer {
    color: yellow !important;
}*/

@media (max-width: 768px) {
    .description-circle {
        width: 150px; 
        height: 150px; 
    }

    .body, html {
        font-size: .7rem;
    }

    .logo img {
        width: 100%;
        max-width: 35vw;
        height: 90%;
        max-height: 40vh;
    }
}

@media(max-height: 500px) {
    .top-right{
      
        left: 60%;
    }

    .bottom-right {
        
        left: 60%;
    }

    .description-circle {
        width: 150px; /* Reduced size for the circle */
        height: 150px;
        font-size: 0.7rem; /* Adjust font size inside the circle */
    }


}
