*{
    margin: 0;
    padding: 0;
}

.cabecalho{
    display: flex;
    flex-direction:column;
    text-align: center;
    background-color: #222;
    padding: 15px;
}

.titulo-pagina h1{
    color: #cee30a;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.titulo-pagina h2{
    color: #ffbb01c8;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.5em;
    font-weight: bolder;
}

.corpo {
    background-color: #333;
    height: 100vh;
    gap: 0.5px; 
}

.container {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 10px;
}

.container input {
    margin-top: .5em;
    width: 300px;
    height: 40px;
    border-radius: 5px;
    border: none;
    padding: 10px;
    font-size: 1.2em;
}

#botao {
    margin-top: 1.5em;
    width: 7em;
    height: 2em ;
   
}
.container button {
    width: 150px;
    height: 40px;
    border-radius: 5px;
    border: none;
    background-color: #cee30a;
    color: #222;
    font-size: 1.2em;
    cursor: pointer;
}

.resultadosAPI {
    display: flex;
    gap: 2px;
    flex-direction: column;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
    
}
.resultadosAPI h1{
    margin-top: 1em;
    text-align: center;
    font-size: 2em;
}

.resultadosAPI h2 {
    text-align: right;
    font-size: 1.5em;  
}
.resultadosAPI img { 
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.rodape a {
    color: rgba(253, 211, 0, 0.718);
    text-decoration: none;
    font-weight: bold;
}
.rodape {
    position: fixed;
    text-align: center;
    background-color: #222;
    color: rgb(167, 206, 11);
    padding: 10px;
    bottom: 0;
    width: 100%;
    font-family: monospace;
    }

