:root {
    --color-primary: #000000d4;
    --color-secondary: #000000d4;
    --color-tertiary: #b301ffd4;
    --color-button: #b301ffd4;
    --color-button-hover: #28c314;
    --color-text: #ffffff;
    --color-white: #ffffff;
}

* {
    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%;
}

.header-banner {
    flex: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 0;
}

.input-section {
    flex: 60%;
    background-color: var(--color-secondary);
    border: 1px solid #000000;
    border-radius: 64px 64px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
}

.main-title {
    text-align: center;
    font-size: 48px;
    font-family: "Merriweather", serif;
    font-weight: 900;
    font-style: italic;
    color: var(--color-white);
}

.section-title {
    font-family: "Inter", serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 10px 0;
    text-align: center;
}

.input-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

.input-name {
    width: 100%;
    padding: 10px;
    border: 2px solid #f0f0f0;
    border-radius: 25px 0 0 25px;
    font-size: 16px;
}

.button-container {
    display: flex;
    flex-direction: column;
    width: 300px;
    justify-content: center;
    margin-top: 20px;
}

button {
    padding: 15px 30px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    border: 2px solid #000000;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgb(179, 171, 171);
    cursor: pointer;
}

.button-add {
    background-color: var(--color-tertiary);
    color: var(--color-text);
    border-radius: 0 25px 25px 0;
}

.button-add:hover {
    background-color: #28c314;
}

.iconReiniciar {
    width: 15%;
   

}

.button-draw {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 40px;
    color: var(--color-white);
    background-color: var(--color-button);
    font-size: 16px;
}

.button-draw img {
    margin-right: 40px;
}

.button-draw:hover {
    background-color: var(--color-button-hover);
}

.button-restart {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 10px 40px;
    color: var(--color-white);
    background-color: var(--color-button);
    font-size: 16px;
    border: 2px solid #000000;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

.button-restart:hover {
    background-color: #ff0000;
}

ul {
    list-style-type: none;
    color: var(--color-text);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    margin: 20px 0;
}

.result-list {
    margin-top: 15px;
    color: #05DF05;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}
.rodape {
    color: rgb(255, 244, 244);
    background-color: rgb(131, 40, 235);
    padding: 24px;
    align-items: column;
    display: flex;
    flex-direction: column;
    min-height: 10vh;
    text-align: center;
    font-size: 2.0rem;
    font-weight: 200;
}

@media (max-width:768px) {
        .img {
        display: none;}
        .rodape {
            height: 300%;
        }

}
    
