body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #a8e6cf, #dcedc1); /* Gradient background */
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .banner img {
        width: 100%;
        height: 100%;
        position: absolute;
        animation: rotateBanner 10s infinite;
    }

@keyframes rotateBanner {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.container {
    max-width: 500px;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    text-align: center;
    animation: fadeIn 1.5s ease;
}

    .container h1 {
        font-size: 2.5rem;
        color: #007bff;
        margin-bottom: 10px;
        text-shadow: 1px 1px #dcedc1;
    }

    .container p {
        font-size: 1.2rem;
        color: #555555;
        margin-bottom: 20px;
    }

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 15px;
    justify-content: center;
}

    .gallery img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s, box-shadow 0.3s; /* Hover effects */
    }

        .gallery img:hover {
            transform: scale(1.1); /* Slight zoom on hover */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

.login-button {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: #d3d3d3     /*#0056b3; #007bff;*/
    color: white;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

    .login-button:hover {
        background-color: #8DB600;  /*<----Apple Green    #0056b3<--- Sapphire Blue*/
        transform: scale(1.1);
    }

.banner img {
    width: 100%;
    height: 100%;
    position: absolute;
    animation: rotateBanner 10s infinite;
    object-fit: cover; /* Ensures proper image fitting */
}

@media (max-width: 600px) {
    .container {
        padding: 15px; /* Reduces padding on small screens */
    }
}

@media (max-width: 600px) {
    .login-button {
        width: 60px;
        height: 60px;
        font-size: 22px; /* Scales the button for touchscreens */
    }
}

.dog {
    padding: 10px;
}
    .dog p {
        padding-top: 15px; /* Adds padding to the top of the dog names */
        /* Style for Fancy Dog Gallery heading and icon */

h1 {
    display: flex;
    align-items: center;
    gap: 10px; /* Adds space between the icon and the text */
    font-family: Arial, sans-serif; /* Ensures a neat font style */
}

.icon {
    width: 10px; /* Adjust the size of the icon */
    height: 10px;
}