body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 50px;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    justify-content: center;
}

/* .container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #000000;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
} */

h1 {
    text-align: center;
    color: #ffffff;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 20px;
    width: 40%;
}

.femboy-list {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    width: 80%;
    list-style-type: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.femboy {
    padding: 10px;
    width: 300px;
    height: 400px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #cbcbcb;
    box-shadow: black 0 0 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease, box-shadow 0.2s ease, transform 0.2s ease;

    p {
        margin-right: 10px;
        font-size: 1.5em;
        font-weight: 600;
        background-color: #5757577f;
        padding: 5px 7px;
        border-radius: 6px;
    }

    .icon {
        width: 100%;
        display: block;
        border-radius: 6px;
    }

}

@media screen and (max-width: 800px) {
    .femboy {
        width: 90%;
        height: auto;
    }

    .femboy-list .visible {
        background-color: #e0e0e0;
        box-shadow: 0 0 3px 5px #7e7e7e;
        transform: translateY(-5px);
    }
}

@media screen and (min-width: 801px) {
    .femboy:hover {
        background-color: #e0e0e0;
        box-shadow: 0 0 3px 5px #7e7e7e;
        transform: translateY(-5px);
    }
}