/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark background */
    color: #ffffff;
    line-height: 1.6;
}

header {
    background: #1c1c1c;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 100px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
}

main {
    padding: 2rem;
}

h1, h2, h3, h4 {
    color: #ff6347; /* Orange for headers */
}

h3 {
    font-size: large;
}


/* Anime Grid */
.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

/* Footer */
footer {
    background: #1c1c1c;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

footer p {
    color: #aaaaaa;
}

/* Centering the Article Section */
article {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #1c1c1c; /* Dark background for contrast */
    border-radius: 8px;
    /* text-align: center; */
}

article h2 {
    color: #ff6347; /* Orange for headers */
    margin-bottom: 1rem;
}

article p {
    color: #dddddd;
    line-height: 1.6;
}

/* Center the Logo in the Header */
header {
    background: #1c1c1c;
    padding: 1.5rem 0;
    text-align: center; /* Center-aligns content in the header */
}

header .logo img {
    max-width: 150px; /* Adjust the size of the logo if necessary */
}

header{
    justify-content: center;
}

#view-full {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 25px;
}

#view-full .button {
    background-color: #bf0c0c;
}

#view-full .button {
    background-color: #e78827;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
    padding: 13px 35px;
    display: inline-block;
    font-size: 18px;
}

#view-full .button:hover {
    background-color: #d31c1c;
}