* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #09090b;
    color: #e4e4e7;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 40px;
    color: #fafafa;
    font-weight: bold;
}

span {
    color: #ac14bc;
}

p {
    color: #71717a;
    margin: 10px;
}

textarea {
    resize: none;
    width: 100%;
    max-width: 640px;
    padding: 16px;
    border: 1px solid #27272a;
    border-radius: 10px;
    background: #141419;
    color: #fafafa;
    outline: none;
    margin-top: 20px;
}

button {
    width: 100%;
    max-width: 640px;
    background: #ac14bc;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    padding: 15px;
    cursor: pointer;
    margin-top: 10px;
}

.bloco-codigo {
    background: #141419;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    color: #ac14bc;
    line-height: 2;
    overflow: auto;
    width: 100%;
    max-width: 450px;
    max-height: 450px;
    white-space: pre-wrap;
}

.resultado-codigo {
    width: 100%;
    max-width: 450px;
    max-height: 450px;
    height: 100%;
    min-height: 350px;
    border: 1px solid #27272a;
    border-radius: 12px;
    background: #141419;
    margin: 10px;
}

.resultado {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

footer {
        display: none;
    }

@media (max-width: 600px) {
    .resultado-codigo {
        width: 100%;
        max-width: 450px;
        max-height: 450px;
        height: 100%;
        min-height: 350px;
        border: 1px solid #27272a;
        border-radius: 12px;
        background: #141419;
        margin: 10px;
    }

    .resultado {
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    h1 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    button {
        width: 100%;
        max-width: 640px;
        background: #ac14bc;
        font-size: 16px;
        font-weight: bold;
        border-radius: 10px;
        border: none;
        padding: 15px;
        cursor: pointer;
        margin-top: 10px;
    }

    h2 {
        color: #000;
    }
}