@font-face {
    font-family: 'NarutoFont';
    src: url('../njnaruto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

a {
    text-decoration: none;
    font-family: 'NarutoFont', sans-serif;
}

body[data-bs-theme="dark"] .noInfoCard {
    color: #f8e4d0;
}

.container {
    padding: 20px;
}

.data {
    color: #d8c0f3;
    transition: color 0.3s ease;
}

.img-container img {
    width: 100%;
    border-radius: 10px;
}

.infoCard {
    padding: 20px;
    margin: 10px 0;
    border-radius: 10px;
    color: #fff;
    text-align: left;
    transition: background-color .8s cubic-bezier(.16, 1, .3, 1);
    background-color: #360072;
    font-family: Verdana, sans-serif;
}

.infoCard:hover {
    background-color: #ffbf83;
}

.infoCard:hover .label {
    color: #360072;
}

.infoCard:hover .data {
    color: #360072;
}

.label {
    font-weight: bold;
    color: #f8e4d0;
    margin-right: 10px;
}

.noInfoCard {
    text-align: center;
    color: #360072;
    font-size: 36px;
    font-weight: bolder;
    font-family: 'Times New Roman', Times, serif;
}

.search {
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.search button {
    position: absolute;
    right: 0;
    height: 100%;
    border: none;
    padding: 0 20px;
    font-size: 16px;
    border-radius: 0;
}

.search input {
    height: 60px;
    text-indent: 45px;
    border: 2px solid #d6d4d4;
    width: 100%;
    outline: none;
    border-radius: 0;
    padding-right: 100px;
}

.search svg {
    position: absolute;
    left: 15px;
    color: #888;
    font-size: 20px;
}

.ticker {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
}

.ticker_items {
    display: flex;
    overflow: visible;
    animation: scroll 10s linear infinite;
}

.ticker_item {
    margin-right: 20px;
    flex-shrink: 0;
}

.title {
    font-family: 'NarutoFont', sans-serif; 
    font-size: 48px;
}
