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

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

.icon {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.card {
    transition: background-color 0.3s, color 0.3s;
}

.card:hover {
    background-color: #fcad5dd6;
    color: #2F2F2F;
}

.learnMoreButton {
    margin: 15px 0;
    color: #fcad5dd6;
}

.fullscreenSection {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F2F2F;
}

.fullscreenSection h1 {
    font-size: 64px;
    background-color: #bebebed6;
    padding: 20px;
    border-radius: 10px;
    font-family: 'NarutoFont', sans-serif;
}

.aboutSection {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
}

.aboutContent {
    background-color: #FFED8C;
    padding: 20px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;
}

.aboutCard {
    margin: 20px;
}

.worksSection {
    background-image: url('https://narutodb.xyz/cards/villages.webp');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    color: #bebebed6;
}

.nav-item {
    font-family: 'NarutoFont', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.footer {
    margin-top: 20px;
    background-color: #FFED8C;
    color: #2F2F2F;
    text-align: center;
    padding: 20px;
    line-height: 1.5;
    font-family: 'Verdana', sans-serif;
}

.footerLogo {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footerContent a {
    color: #fcad5dd6;
    text-decoration: none;
}

.footerContent a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .aboutContent {
        font-size: 4vw;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .aboutContent {
        font-size: 3vw;
    }
}

@media (min-width: 1201px) {
    .aboutContent {
        font-size: 2vw;
    }
}