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

html, body {
 
    background: url('assents/imagemDev.png') no-repeat center center fixed;
    background-size: cover;
}

body {
    min-height: 100vh;
    background: #09090be0;
    color: #e4e4e7;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 2.5rem;
    color: #fafafa;
    font-weight: bold;
}
span {
    color: #22c55e;
}

p {
    color: #717171;
    margin: 10px;
}

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

button {
    width: 100%;
    max-width: 720px;
    background: #22c55e;
    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: #34d399;
    line-height: 2;
    overflow: auto;
    width: 100%;
    max-width: 450px;
    max-height: 450px;
    white-space: pre-wrap;
    margin-top: 10px;
}

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

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

.sobre-nos {
    width: 100%;
    max-width: 720px;
    background: #c4c4d485;
    border: 4px solid #27272a;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.nos {
    color: #f2f4f5;
    font-size: 25px;
    text-shadow: #141419 1px 0px 0px;
    text-indent: 40px;
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.imagem img{
    width: 32%;
    max-width: 320px;
    border-radius: 10px;
    border: 2px solid #27272a;
    justify-content: center;
}

a {
    color: #f8fafa;
    text-decoration: none;
    margin: 0 10px;
}

footer p {
    display: inline-block;
    margin: 10px 15px;
    color: #bfc0c0;
    text-decoration: none;
    font-size: 14px;
}

footer {
    width: 100%;
    max-width: 720px;
    margin-top: 40px;
    padding: 10px;
    background: #141419b0;
    border: 1px solid #27272a;
    border-radius: 5px;
    font-size: 100%;
    text-align: center;
    
}