body{
    margin: 0;
    background: linear-gradient(to right, lightblue, yellow);
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
}



.container{
    background-color: aliceblue;
    padding: 1.5rem 3rem;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, .3);
    text-align: center;
    padding: 10px;
    margin: 5px;
    width: 450px;
    
}

.btn{
    background-color: green;
    border-radius: 6px;
    color: aliceblue;
    padding: 10px 30px;
    margin-bottom: 30px;
    cursor: pointer;
}

.btn:disabled{
    background-color: gray;
    cursor: not-allowed;
}

.anime-img{
    height: 300px;
    width: 300px;
    border-radius: 50%;
    border: 3px solid green;
}

.anime-name{
    margin: 20px;
    background-color: green;
    border-radius: 6px;
    color: aliceblue;
    font-size: 17px;
    font-weight: 600;
    padding: 10px;
}

.anime-container{
    display: none;
}