* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    margin-bottom: 6%;
    background-color: #020D19;
}

picture {
    display: flex;
    align-items: center;
    height: 8%;
    justify-content: center;
}

img {
    width: 33%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    
    
}

header {
    display: flex;
}


header, h1 {
    font-size: 24px;
    line-height: 1.6;
    color: #dddddd;
    text-align: center;
}

h1 {
    margin-top: 10%;
}

picture {
    display: flex;
}

#container-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10%;
    gap: 8px;
}

input {
    display: flex;
    width: 20vw;
    height: 8vh;
    font-size: 20px;
}

p {
    display: flex;
    font-size: 20px;
}

#container-resposta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    color: rgba(0, 255, 13, 0.596);
}

#codCopiado {
    color: rgba(0, 255, 13, 0.596);

}

#container-codigo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    gap: 8px;
}

#submit {
    width: 10vw;
}

button {
    height: 10vh;  
    border: transparent; 
    border-radius: 4px; 
    padding: 4px;
    cursor: pointer;
    overflow: hidden;
    transition:  0.3 ease;
}

button:hover {
    color: #dddddd;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: rgba(0, 0, 0, 100%);
}

section {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    line-height: 1.6;
    color: #dddddd;
    justify-content: center;
    align-items: center;
}

.observacao {
    width: 50%;
    margin-top: 2%;
    font-weight: bold;
    color:	rgb(255, 255, 255, 0.966);

}

.lista {
    display: flex;
    flex-direction: column;

}

#lista-geral {
    word-break: break-all;
    margin-left: 20%;
}

table {
    width: 25%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
    font-weight: bold;
    color: rgb(255, 255, 255);
}

th {
    color:rgba(145, 256, 167, 0.5);

}

tbody tr:nth-child(even) {
    background-color: rgba(124, 136, 147, 0.5);
}

tbody tr:hover {
    background-color: rgba(222, 111, 111, 0.5);

   
}

.titulo-geral {
    margin-top:6%;
}

.errosComuns {
    font-weight: bold;
}

.spanSucesso {
    color: rgba(0, 255, 13, 0.596);
    font-weight: bold;

}

.paragrafo-sucesso {
    font-weight: bold;
}

@media (max-width: 480px) {

    header {
        background-image: none;
    }


    h1 {

        color: rgb(255, 255, 255, 5.9);
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),
        2px 2px 4px rgba(0, 0, 0, 0.6);
        margin-top: 4%;
        
    }

    #container-box {
        margin-top: 50%;
    }

}

