header > h1{
    color: #39393a;
    margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column; 
    position: relative;
}


body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    background-image: url(../img/fundo_mistico.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

header {
    display: flex;
    align-items: flex-start; 
    padding: 20px;
    gap: 15px; 
    flex-direction: column;
}

header img {
    width: 150px;  
    height: auto;
    border-radius: 50%; 
    object-fit: cover;
    border: 2px solid white;
}

main {
    flex: 1; 
    display: flex;
    justify-content: center; 
    align-items: center;     
}

.search-box {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.search-box h2 {
    margin-bottom: 20px;
    color: #444;
    font-size: 1.2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="number"] {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

input[type="number"]:focus {
    border-color: #4a90e2; 
}

button {
    padding: 12px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

button:hover {
    background-color: #000;
    transform: translateY(-2px); 
}