:root {
    --color-primary: #86b8b1;
    --color-secondary: #e9f0c9;
    --color-tertiary: #000000;
    --color-button: #fce07f;
    --color-button-hover: #fcc71b;
    --color-text: #000000;
    --color-white: #ffffff;
}

/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Banner */
.header-banner {
    flex: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0 50px;
}

/* Seção de entrada */
.input-section {
    flex: 60%;
    background-color: var(--color-secondary);
    border: 2px solid #000;
    border-radius: 64px 64px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
}

/* Títulos */
.main-title {
    font-size: 65px;
    font-family: "Lilita One", serif;
    font-weight: 900;
    color: var(--color-text);
}

.section-title {
    font-family: "Signika", serif;
    font-size: 25px;
    font-weight: 700;
    color: var(--color-text);
    margin: 10px 0;
    text-align: center;
}

/* Contêineres de entrada e botão */
.input-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

.input-name {
    width: 100%;
    padding: 10px;
    border: 2px solid #000;
    border-radius: 25px 0 0 25px;
    font-size: 18px;
    font-family: "Signika", sans-serif;
}

li{
    background-color: var(--color-white);
    border-radius: 15px;
    margin: 15px;
    padding: 10px;
    text-align: center;

}

.button-container {
    width: 300px;
    justify-content: center;
}

/* Estilos de entrada de texto */
.input-title {
    flex: 1;
    padding: 10px 15px;
    font-size: 16px;
    border-right: none;
    border-radius: 25px 0 0 25px;
    font-family: "Signika", serif;
}

/* Estilos de botão */
button {
    padding: 15px 30px;
    font-family: "Signika", sans-serif;
    font-weight: 700;
    font-size: 20px;
    border-radius: 25px;
    cursor: pointer;
}

.button-add {
    background-color: var(--color-button);
    color: var(--color-text);
    border-radius: 0 25px 25px 0;
}

.button-add:hover {
    background-color: var(--color-button-hover);
}

/* Listas */
ul {
    list-style-type: none;
    color: var(--color-text);
    font-family: "Signika", sans-serif;
    font-size: 20px;
}

.result-list {
    color: var(--color-text);
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

/* Botão de sortear título */
.button-draw {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 40px;
    color: var(--color-text);
    background-color: var(--color-button);
    font-size: 20px;
}

.button-draw img {
    margin-right: 40px;
}

.button-draw:hover {
    background-color: var(--color-button-hover);
}
