@font-face {
    font-family: 'Gotham';
    src: url('\Content\assets\fonts\Gotham-Medium.otf');
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
}

.relative-home {
    overflow: hidden;
}

/*.main {
    display: flex;
    flex-flow: column;
    width: 100%;
    align-items: center;
    height: 100%;
    overflow: hidden;
    margin: 45vh 0 0 -55vh;
}*/

.main {
    display: flex;
    justify-content: center; /* optional: centers them horizontally */
    gap: 20px; /* optional: space between buttons */
}

.btn-mino {
    flex: 1 1 auto;
    max-width: 300px; /* adjust based on your design */
}

@media(max-width: 767px) {
/*    .main {
        height: 100vh;
        margin: 45vh 0 0 10vh;
    }*/

    .main {
        flex-direction: column;
        align-items: center; /* optional: center them when stacked */
    }

    .btn-mino {
        width: 100%; /* optional: take full width if needed */
        max-width: none;
        margin-bottom: 20px; /* space between stacked items */
    }

    .link{
        margin-bottom: 4vh;
    }

    .imgs {
        width: 50%;
    }

    body {
        background-position: -100px center;
        background-attachment: initial; 
        height: 100vh;
    }
}

.link {
    display: flex;
    justify-content: center;
    margin-bottom: 5vh;
}

.imgs {
    width: 80%;
}


@media(max-width: 325px) {
    body {
        background-position: -70px center;
    }
}


.image-container {
    display: flex;
    flex-direction: row;
    width: 100vw; /* Ensures it never goes beyond screen */
    height: 100vh;
    overflow: hidden; /* Prevents overflow from images */
}

.responsive-image {
    /*flex: 1 1 50%;*/ /* Ensures two images = 100% total */
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-wrapper {
    width: 50%;
    display: flex;
    justify-content: center;
    overflow:hidden;
    position: relative;
}

.link-img {
    position: absolute;
    bottom: 0;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
    }

    .responsive-image {
        width: 100%;
        height: 50vh; /* half the screen height */
    }

    .image-wrapper {
        width: 100%;
    }
}