    @font-face {
        font-family: Roboto-Regular;
        src: url(fonts/Roboto/static/Roboto-Regular.ttf);
        font-family: Roboto-Bold;
        src: url(fonts/Roboto/static/Roboto-Bold.ttf);
    }
    body {
    font-family: Roboto-Bold, Arial;
    background: linear-gradient(180deg,#152128, #121212 );
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fafaf9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    }
    h1 {
    font-family: Roboto-Bold, Arial;
    text-align: center;
    font-size: 2rem;
    color: #fafaf9;
    text-shadow: 4px 4px 4px #0f0b0b;
    }
    h2 {
    font-family: Roboto-Bold, Arial;
    text-align: center;
    font-size: 1rem;
    color: #fafaf9;
    }
    .card-container {
        position: relative;
        border-radius: 15px;
        background-color: #0f0b0b79;
        border: 5px solid transparent;
        background: #e7e1e1;
        background-clip: padding-box;
        box-shadow: 5px 5px 25px #0f0b0b;
        cursor: pointer;
    }
    .card-container::after{
        position: absolute;
        top: -5px; bottom: -5px;
        left: -5px; right: -5px;
        background-image: url(assets/dnd-cards/beholder/Background-DnD.png);
        content: '';
        z-index: -1;
        border-radius: 15px;
    }
    .card-background {
        background-image: url(assets/dnd-cards/beholder/Background-DnD.png);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 200px;
        position: relative;
        z-index: 1;
        border-radius: 15px;
        transition: 0.25s cubic-bezier(.47,.17,.57,.43);
    }
    .card-foreground {
        background-image: url(assets/dnd-cards/beholder/Foreground-DnD.png);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 200px;
        position: relative;
        z-index: 2;
        border-radius: 15px;
        transition: 0.25s cubic-bezier(.47,.17,.57,.43);
    }
    .card-title {
        position: relative;
        top: -50px;
        z-index: 4;
        color: #fafaf9;
        font-family: Roboto-Bold, Arial;
        text-align: center;
        font-size: 1.5rem;
        text-shadow: 4px 4px 4px #0f0b0b;
        transition: 0.25s cubic-bezier(.47,.17,.57,.43);
    }
    .card-text {
        position: relative;
        z-index: 3;
        color: #fafaf9;
        border-radius: 15px;
        background-color: #0f0b0b70;
        font-family: Roboto-Regular, Arial;
        font-size: 1rem;
        text-shadow: 2px 2px 2px #0f0b0b;
        transition: 0.25s cubic-bezier(.47,.17,.57,.43);
    }
    .card-container:hover .card-background {
        transform: scale(0.95) perspective(400px) rotate3d(1,0,0,5deg);
        box-shadow: 5px 5px 25px #0f0b0b;
    }
    .card-container:hover .card-foreground {
        transform: scale(1.1) perspective(400px) rotate3d(1,2,0,-15deg) translateY(-4px);
    }
    .card-container:hover .card-title {
        transform: scale(1.1)
    }
    .card-container:hover .card-text {
        background-color: #0f0b0b79;
        transform: translateY(-5px);
    }
    a {
        all: unset;
    }