body {
    background-color: #121314;
}

text {
    color: #ffff
}


/******************fade in on load!**********************************/
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}


@keyframes fadeIn {
    from {
    opacity: 0;
    transform: translateY(10px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
    }
/***************************************************/


.vm-card {
    background-color: #1f1f1f;
    border-radius: 12px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.card-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}


.spaced-text {
  margin-bottom: 40px; /* Adjust the space as needed */
}

.less-spaced-text {
  margin-bottom: 2px; /* Adjust the space as needed */
}