body::before {
    content: "";
    position: fixed; /* Use fixed position instead of absolute */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85); /* Adjust the alpha value for the desired level of transparency */
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/mount_fuji.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%); /* Apply greyscale effect */
    z-index: -2; /* Place the image behind the overlay */
}

.card {
   width: 300px;
}
.card h3 {
    font-family: 'Playfair Display',Georgia,"Times New Roman",serif;
}

.card-img {
    aspect-ratio: auto;
    object-fit: contain;
    width: 100%;
}

.card-link a, i{
    color: #e34242
}

.score-ico{
    width:45px;
    height:45px;
}

.rating-item{
    min-width: 90px;
    margin-top: 15px;
}

.rating-item img{
    width: 35px;
    height: 35px;
}

.ramen-filling {
    position: absolute;
    z-index: 1;
}

.ramen-outline {
    position: relative;
    z-index: 2;
}

footer a, footer p {
    color: white;
    font-size: 9pt;
}