body {
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #383636;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

#resultados {
    max-height: 300px;
    overflow-y: auto;
}

#resultados::-webkit-scrollbar {
    width: 8px;
}

#resultados::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 10px;
}

#resultados::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

#resultados::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}