    * {
        box-sizing: border-box;
    }

    body {
        font-family: Arial, sans-serif;
        padding: 20px;
        background: #f4f4f4;
    }

    .box {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        max-width: 500px;
        margin: auto;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    h1 {
        text-align: center;
    }

    textarea,
    input[type=text] {
        width: 90%;
        padding: 10px;
        margin-top: 10px;
        word-break: break-all;
        margin: auto;
    }

    button {
        margin-top: 15px;
        padding: 10px;
        width: 100%;
        cursor: pointer;
        border: none;
        background-color: #4a90e2;
        color: white;
        font-weight: bold;
        text-align: center;
        border-radius: 6px;
        text-decoration: none;
        display: block;
    }

    .nav-link {
        margin: auto;
        padding: 40px 0;
        width: 50%;
        cursor: pointer;
        border: inset 0.2px lightgrey;
        color: white;
        font-weight: bold;
        text-align: center;
        align-items: center;
        border-radius: 1px;
        text-decoration: none;
    }

    .dark-red {
        background: radial-gradient(circle, rgb(207, 36, 36) 15%, rgb(92, 7, 7) 90%);
        transition: filter 0.4s ease;
    }


    .create-unft-btn, .profile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .bulb-icon, .profile-icon {
        stroke: white;
    }

    .dark-blue {
        background: radial-gradient(circle, rgb(27 62 116) 15%, rgb(2 6 26) 90%);
        transition: filter 0.4s ease;
    }

    .yellow-tone {
        background: radial-gradient(circle, rgb(240, 197, 80) 15%, rgb(253, 182, 27) 90%);
        transition: filter 0.4s ease;
    }

    .green-tone {
        background: radial-gradient(circle, rgb(27, 116, 89) 15%, rgb(2, 41, 12) 90%);
        transition: filter 0.4s ease;
        color: white;
    }


    .dark-red:hover,
    .dark-blue:hover,
    .yellow-tone:hover,
    .green-tone:hover {
        filter: brightness(1.2) saturate(1.2);
    }

    button:hover {
        background-color: #357ac8;
    }

    .result {
        font-size: 0.9em;
        background: #eef;
        padding: 10px;
        margin-top: 10px;
        border-radius: 5px;
        word-break: break-all;
    }

    .nav-section {
        margin: 50px 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        border: inset 0.1px lightgray;
    }