html, body { margin: 0; padding: 0;}

body { 
    background: black; 
    position: relative;
    color: white;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    /* font-family: 'Courier New', Courier, monospace; */
}



    #canvas {
        position: absolute;
        top: 7%;
        left: 7%;
        width: 85vw; /* Full viewport width */
        height: 85vh; /* Full viewport height */
        border: 1px solid #555;
        border-radius: 40px;
        background-color: black;
    }
    

    #nftContainer {
        position: absolute;
        top: 10px;
        width: calc(100% - 40px);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 20px;
        gap: 10px;
        /* z-index: 10; */
    }

    #reproduce {
        position: absolute;
        top: 65px; 
        left: calc(50% - 5px);
        transform: translateX(-50%);
        padding: 15px 25px;
    }


    input {
        background-color: black;
        color: white;
        border: 1px solid #555;
        border-radius: 10px;

        padding: 10px;
        width: 250px;
        font-family: 'Courier New', Courier, monospace;
        font-size: 12px;
    }

    button {
        background-color: black;
        color: white;
        border: 1px solid #555;
        padding: 10px 15px;
        border-radius: 10px;
        cursor: pointer;
    }

    button:disabled {
        background-color: #111;
        color: #777;
        cursor: not-allowed;
    }

    #copulate {
        padding: 15px 30px;
        margin: 0 20px;
    }

  
    

    #bottomButtons {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        /* display:flex; */
        gap: 10px;
    }

    #bottomButtons button {
        padding: 10px 20px;
        border-radius: 10px;
    }

    #bottomButtons hr {
        height: 1px;
        border: none;
        background-color: grey;
     }

    #bottomText {
        left: 50%;
        transform: translateX(+25%);
        white-space: nowrap;
        margin-top: 15px;
        /* display:flex; */
    } 
    #bottomText a {
        color: white;
        font-weight: bold;
        text-decoration: none;
    }
    #bottomText a:hover {
        text-decoration: underline;
        opacity: 0.8;
    }


    iframe {
        position: absolute;
        top: 65px;
        width: 400px;
        height: 400px;
        border: 1px solid #555;
        border-radius: 20px;
        background-color: black;
    }

    #myIframe1 {
        left: 20px;
    }
    #myIframe2 {
        right: 20px;
    }


    #TokenId1, #TokenId2 {
        background-color: black;  /* Sets the background to black */
        color: #ccc;             /* Sets the text color to white */
        width: 100%;              /* Makes the select box take the full width of its container */
        max-width: 300px;         /* Restricts the maximum width to 300px */
        padding: 8px 30px 8px 20px;
        border-radius: 10px;
    }