body {
    background-color: #000000;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    color: #ffffff;
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 5px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff;
}

p {
    color: #ffffff;
}

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

.main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.main-img {
    background: url('../pageimgs/femboy_land.jpg') no-repeat center center;
    background-size: contain;
    height: 40vh;
    width: 50vw;
    max-width: 500px;
}

.main-text {
    text-align: left;

    p {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 800px) {
    .main {
        flex-direction: column;
    }

    .main-text {
        width: 90vw;

        p {
            font-size: 1.2em;
            text-align: center;
        }
    }

    h1 {
        text-align: center;
        margin: 0;
    }

    .main-img {
        width: 90vw;
        height: 30vh;
    }
}