body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #aae5a4;
    font-family: sans-serif;
}

.container {
    text-align: center;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

.main-gif {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.btn1 {
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    background-color: #29a025;
    color: white;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn2 {
    padding: 10px 25px;
    font-size: 18px;
    cursor: pointer;
    background-color: #dd1010;
    color: white;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn1:hover {
    background-color: #20771b;
    transform: scale(1.1);
}

.btn2:hover {
    background-color: #a32020;
    transform: scale(0.9);
}
