/* Universal Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* A clean, modern font */
}

/* Body Styles */
body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffe5e5;
    padding: 20px; /* Ensures content doesn't touch screen edges */
}

/* Main Content Container */
.container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 25px; /* Space between elements */
    max-width: 500px;
    width: 100%;
}

/* GIF Image Style */
/* This new class will style the GIFs you downloaded */
.gif-image {
    width: 100%;
    max-width: 200px; /* Controls the GIF size */
    height: auto;
    border-radius: 12px; /* Optional: adds rounded corners to the GIF */
}

/* Heading Styles */
h1 {
    font-size: 2rem;
    color: #333;
}

/* Paragraph Styles */
p {
    color: #555;
    font-size: 1.1rem;
}

/* Button Container */
.container .btn {
    display: flex;
    gap: 20px; /* Space between the 'Yes' and 'No' buttons */
    margin-top: 10px;
}

/* Button Styles */
.btn a {
    text-decoration: none;
    color: #111;
    background: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease;
}

/* Button Hover Effect */
.btn a:hover {
    transform: scale(1.05); /* Makes the button slightly larger on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Mobile Devices */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem; /* Smaller heading on small screens */
    }

    p {
        font-size: 1rem;
    }

    .container .btn {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        width: 80%; /* Makes buttons wider on small screens */
    }

    .btn a {
        padding: 15px 20px; /* Adjust padding for vertical buttons */
    }
}

  body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE/Edge */
    user-select: none;         /* Standard */
  }