body {
    font-family: Arial, sans-serif;
    margin: 0;        
    padding: 0;
    /*#1a1d24;*/
    background-color: #1a1d24;
    color: #ff3333; 
    
}

nav {
    background-color: #0f1115;
    padding: 1rem;  
}

nav .headerbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav h1 {
    color: #ffffff;
    margin: 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-grow: 1;
    justify-content: center;
}
nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-weight: bolder;
    font-size: larger;
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff3333;
}
.topanime {
    width: 100vw;
    height: 80vh;
    background-color: #1f1f1f;
    border: none;
    border-radius: 20px;
    position: relative;
    max-width: 100%;
  
}

.topanimeimage {

    width: 100vw;
    height: 80vh;
    border-radius: 20px;
    top: 0;
    max-width: 100%;

}

.topanimeimage img {
    width: 100vw;
    height: 80vh;

    max-width: 100%;
    border:none ;
    object-fit: cover;
    display: block;
    mask-image: linear-gradient(rgb(0, 0, 0), transparent);

}

.topanime-info{
    width: 30vw;
    height: 20vh;
    padding: 40px;
    color: white;
    bottom:0;
    position: absolute;
}
.topanime-info button{
    background-color: #ff3333;
    color: #ffffff;
    font-weight: bolder;
    font-size: 16px;
    border:none;
    border-radius: 30px;
    padding: .5rem 1rem;
    transition: 0.8s;
}
.topanime-info button:hover{
    scale: 1.2;
    background-color: #b22323;
    color: rgb(194, 194, 194);
    cursor: pointer;
}
.animelist{
    padding: 40px;
}

.animeimage{
/* Rectangle 1 */

width: 210px;
height: 320px;
border-radius: 10px;
transition: .8s;





}
.animelistcontainer {
    display: flex;
    align-items: center;

    gap: 20px; 
    padding-bottom: 30px;
}
.animeimage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.animeimage:hover{
    transform: scale(1.05); 
}
.playbutton{
    width: 100%;
    height: 1%;
    background-color: #ff3333;
    color: #ffffff;
    font-weight: bolder;
    
    font-size: 20px;
    border:none;
    border-radius: 10px;
    padding: 10px;
    transition: 0.8s;
    
}
.playbutton:hover{
    background-color: #911b1b;
    color: rgb(194, 194, 194);
    cursor: pointer;
}
.animeinfo{
    padding-bottom: 30px;
}
.animeinfo h4{
    color:white;
}

footer {

    margin-top: 60px;
    padding: 20px 0;
    background-color: #0f1115;
    text-align: center;
    color: white;
    font-size: 14px;
}
footer p{
    margin: 5px 0;
}



footer a {
    color: #ff4500;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}