* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: #1E1338;
    background: linear-gradient(135deg, rgba(30, 19, 56, 1) 0%, rgba(42, 27, 71, 1) 25%, rgba(74, 54, 168, 1) 50%, rgba(107, 87, 230, 1) 75%, rgba(139, 108, 255, 1) 100%);
    background-attachment: fixed;
}

header {
    display: flex;
    color: white;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
}

main {
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 10px;
    height: 100vh;
    text-align: center;
}

#busca {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#busca input {
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

#busca button {
    border: none;
    border-radius: 5px;
    padding: 5px 20px;
}


#informativo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#informativo p {
    border-right: 2px solid #fff;
    font-size: 2rem;
    padding: 10px;
}

.resultadoEstilizacao {
    margin-top: 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 20px;
}

footer {
    display: flex;
    color: white;
    font-size: 1em;
    justify-content: center;
    padding: 15px;
    border-top: 2px solid #fff;
}
