@font-face {
    font-family: 'toodzFont';
    src: url('assets/RifficFree-Bold.ttf');
}

body {
    background: rgba(93, 17, 175, 1) !important;
}



.center {
    display: block;
    margin: auto;
    width: 50%;
}

.card {
    color: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    &-body {
        text-align: center;
    }
}

.bg-custom-1 {
    background-color: rgb(38, 7, 71);
}

.title {
    background-color: rgba(93, 17, 175, 1);
    text-align: center;
    padding: 50px;
    font-family: toodzFont;
    color: white;
}

h1, h5 {
    font-family: toodzFont !important;
}

.card:hover,
.card:focus-within {
  box-shadow: 0 0 1rem rgba(0,0,0,0.15);
}

.icon {
    width: 50px;
    height: 50px;
    z-index: -1000; /* Adjust z-index to be positive if needing overlay */
    background-size: cover;
    position: fixed;
    animation: moveAndFade 5s ease-in-out forwards;
}

@keyframes moveAndFade {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translate(10px, 10px) rotate(20deg); /* Adjust movement and rotation */
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
}

a:hover {
    text-decoration: none !important;
}