body
{
    margin: 0;
    background: linear-gradient(to right, red,black);
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
}
.container
{
    background: aliceblue;
    border-radius: 10px;
    box-shadow: 0px 10px 20px;
    text-align: center;
    padding: 10px;
    width: 450px;
    margin: 5px;
}
.btn
{
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        border: 2px solid #3498db; /* Border color */
        color: #3498db; /* Text color */
        background-color: #fff; /* Background color */
        border-radius: 5px; /* Rounded corners */
        transition: background-color 0.3s, color 0.3s, border-color 0.3s;
        margin-bottom: 30px;
    
}
.btn:hover {
    background-color: #3498db; /* Hover background color */
    color: #fff; /* Hover text color */
    border-color: #fff; /* Hover border color */
}
.btn:disabled
{
    cursor: not-allowed;
    opacity: 0.6;
    background-color: darkred;
    border-color: black;
}
.anime-img
{
    height: 300px;
    width: 300px;
    border-radius: 50%;
    border: 3px solid;
    cursor: pointer;
}
.anime-container
{
    display: none;
}
