* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.rat-container {
    position: relative;
    width: 300px;
    height: 300px;
}

#rat {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

@media (max-width: 600px) {
    .rat-container {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 400px) {
    .rat-container {
        width: 150px;
        height: 150px;
    }
}

