* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5e5e5;
    padding: 20px; /* Prevents content from touching the edges */
}

.container {
    max-width: 500px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* GIF Styling */
.container .gif {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Adds a softer look */
    display: block;
    margin: 0 auto; /* Centers the GIF */
    padding-left: 5px; /* Slight left padding */
}

.container .text h1 {
    font-size: 28px;
    margin-bottom: 8px;
}

.container .text p {
    font-size: 16px;
    color: rgb(95, 95, 95);
    padding: 0 10px;
}

.container .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Button Styling */
.btn a {
    text-decoration: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    background-color: #f84c7f;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}

/* Hover Effect */
.btn a:hover {
    background-color: #e04372;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .container .btn {
        flex-direction: column; /* Stacks buttons */
        gap: 12px;
    }
    
    .container .text h1 {
        font-size: 24px;
    }

    .btn a {
        width: 80%; /* Makes buttons wider on small screens */
        text-align: center;
    }

    .container .gif {
        padding-left: 0; /* Removes left padding for small screens */
    }
}
