@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #18191a;
    border-radius: 10px;
}
   
  /* Handle */
::-webkit-scrollbar-thumb {
    background: #3e4142;
    border-radius: 10px;
}

html {
    font-size: 62.5%;
}

body {
    background-color: #18191a;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 10px;
    align-self: flex-end;
}

.card {
    background-color: #242526;
    border-radius: 5px;
    padding: 20px;
    width: 300px;
    box-sizing: border-box;
}

.card img {
    max-width: 100%;
    border-radius: 5px 5px 0 0;
}

.card-title {
    font-size: 1.2em;
    margin: 10px 0;
    color: #fff;
}

.card-title:hover {
    cursor: pointer;
    color: #007bff;
}

.card-description {
    font-size: 0.9em;
    color: #666;
}

.ir-arriba {
    display: none;
    padding: 10px;
    background: #007bff;
    color: #fff;
    cursor: pointer;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 200000;
    border-radius: 50%;
}

.arrow-up-icon {
    position: relative;
    width: 30px;
    height: 30px;
    filter: invert(1);
}