body {
    margin: 0px;
    padding: 0px;
    background-color: black;
}

.body {
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url('/img/imageMap.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    backdrop-filter: brightness(1.4);
}

.header {
    height: 10vh;
    width: 100%;
    background-color: black;
    margin: 0px;
    padding: 0px;
}

hr {
    width: 100%;
    height: 20px;
    border: 0;
    background-color: #CE9704;
    margin: 0px;
    padding: 0px;
}

.main {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.main__info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 10vh;
    gap: 20vw;
    top: 0;
    left: 0;
}

.main__logo {
    background-image: url(/img/Reborn\ Realty\ Logo\ 1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 40vh;
    height: 40vh;
}

.main__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1vw;
}

.main__text p {
    color: aliceblue;
    font-family: 'Inter', sans-serif;
    font-size: 2vw;
    font-weight: 300;
}

.main__button-to {
    width: 20vw;
    min-width: max-content;
    background-color: #CE9704;
    padding: 1vw;
    font-family: 'Inter', sans-serif;
    font-size: 1.3vw;
    color: white;
    border-color: #CE9704;
}


footer {
    height: 10vh;
    width: 100vw;
    background-color: black;
    margin: 0px;
    padding: 0px;
}

footer p {
    color: aliceblue;
    font-family: 'Inter', sans-serif;
    font-size: 1vw;
    margin-left: 2vw;
}

@media (max-width:900px) {
    .main__info {
        margin: 3vw;
        gap: 2vh;
    }

    .main__text p {
        font-size: 16px;
    }

    .main__button-to {
        font-size: 16px;
    }

    footer p {
        font-size: 14px;
    }
}

@media (max-width:600px) {
    .main__info {
        gap: 10vh;
        width: 40vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        justify-items: center;
    }

    .main__text {
        align-items: center;
        margin: 0 auto;
        padding: 0px;
    }

    .main__text p {
        font-size: 14px;
        margin: 5px auto;
        font-weight: 500;
        text-align: center;
        font-size: 16px;
    }

    .main__button-to {
        font-size: 16px;
        width: 33vh;
        padding: 1vh 2vh;
    }

    footer p {
        font-size: 12px;
    }
}