body {
    background-image: url("../../public/images/entrance-dragon.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    background-attachment: fixed;
    z-index: -1;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
}

.navbar .container {
    justify-content: center;
}
h1 {
    color: #fff;
    text-shadow: 2px 2px #000;
}
a {
    text-decoration: none;
}
.character-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
    background-image: url("../../public/images/paper.png");
    background-color: transparent;
    padding: 10px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
}
.character-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
}
.char-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.character-card img.frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.character-card img.avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.character-card .text-success {
    height: 15%;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    font-weight: 500;
}