::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: #30084c;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #30084c;
}

html,
body {
  scrollbar-width: thin;
  scrollbar-color: #30084c #0f172a;
}

body {
  -ms-overflow-style: auto;
}
body{
    font-family: Arial, sans-serif;
    background:#0f172a;
    color:#f4f4f4;
    text-align:center;
    font-family:Arial,sans-serif;
    margin:0;
    padding:20px;
}
#contenedor {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
#contenedor2 {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.card{
    background:#30084c;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 0 10px #0000004d;
}
.card img{
    width: 100%;
}
.info{
    padding:15px;
}
.btn{
    display:inline-block;
    background:#00aaff;
    color:white;
    text-decoration:none;
    padding:10px 15px;
    border-radius:8px;
}
.footer{
    background: linear-gradient(180deg, #151f34, #151f34);
    padding: 30px 20px;
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    border-top: 1px solid #151f34;
    margin-top: 40px;
}

.footer p{
    margin: 10px 0;
    font-size: 16px;
}

.footer a{
    color: #a855f7;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover{
    color: #151f34;
}
.titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}