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

body, html {
    height: 100%;
    width: 100%; 
    margin: 0; 
    padding: 0; 
    font-family: Arial, sans-serif;
    color: white;
    background: linear-gradient(to top, #CC50EB, #DB9EEB);
}


body.index-page {
    display: flex;
    justify-content: center; 
    align-items: center;     
    text-align: center;      
    height: 100vh;           
}

/* Container principal */
.container {
    display: flex;
    flex-direction: column;  
    justify-content: center; 
    align-items: center;     
    text-align: center;      
    width: 100%;
    padding: 20px;           
}

header {
    margin-bottom: 30px;
}

header .logo-imagem {
    display: inline-block;
    margin-bottom: 10px;
}

header h1 {
    font-size: 2rem;
    color: whitesmoke;
}

/* Estilo do conteúdo */
section {
    margin: 30px 0;
}

section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: whitesmoke;
}

section p {
    font-size: 1rem;
    color: white;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FF61E6;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #CC00AB;
}

footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}

textarea {
    width: 70vw; 
    height: 90vh; 
    padding: 50px; 
    font-size: 16px; 
    line-height: 1.6; 
    border: 1px solid #ccc; 
    border-radius: 10px; 
    background-color: white; 
    resize: none; 
    box-sizing: border-box; 
    overflow-y: auto; 
}

.warning {
    color: white;
    font-size: 20px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    background-color: rgba(0, 0, 0, 0.7); 
    padding: 10px 20px; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); 
    z-index: 10; 
}
