/* General body styling */
body {
    font-family: 'Playfair Display', serif; /* Default font for the body */
    display: flex;
    flex-direction: column; /* Ensure vertical layout */
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

/* Header Section Styling */
.header-container {
	font-family: 'Josefin Sans', sans-serif; /* Ensures font consistency in the container */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px; /* Adjusts spacing between header and button section */
}

.logo {
    max-width: 150px; /* Adjust the logo size as needed */
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem; /* Adjust font size as needed */
    margin: 0;
    color: #333;
}

.author {
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
}

/* Button Container Styling */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

/* Button Styling */
.button {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    box-shadow: inset 0px -10px 10px rgba(0, 0, 0, 0.1), 0px 5px 10px rgba(0, 0, 0, 0.2);
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0.2)), linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.2));
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}

/* Color-specific button classes */
.orange { background-color: #f89c32; }
.yellow { background-color: #ffeb3b; color: #000; }
.green { background-color: #8bc34a; }
.lightgreen { background-color: #cddc39; color: #000; }
.blue { background-color: #03a9f4; }
.purple { background-color: #9c27b0; }

/* Hover effects for buttons */
.button:hover {
    transform: scale(1.05); /* Slightly enlarges the button */
    box-shadow: inset 0px -10px 15px rgba(0, 0, 0, 0.2), 0px 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Responsive Layout */

/* For small devices (max-width: 768px) */
@media (max-width: 768px) {
    .logo {
        max-width: 120px; /* Reduce logo size */
    }

    h1 {
        font-size: 2.5rem; /* Smaller font for the title */
    }

    .author {
        font-size: 14px; /* Adjust the author text size */
    }

    .button {
        width: 80px;
        height: 80px;
        font-size: 14px; /* Adjust button text size */
    }

    .button-container {
        gap: 15px;
        padding: 15px;
    }
}

/* For extra small devices (max-width: 480px) */
@media (max-width: 480px) {
    .logo {
        max-width: 100px; /* Further reduce logo size */
    }

    h1 {
        font-size: 1.5rem; /* Smaller font for the title */
    }

    .author {
        font-size: 12px; /* Adjust the author text size */
    }

    .button {
        width: 60px;
        height: 60px;
        font-size: 12px; /* Adjust button text size */
    }

    .button-container {
        gap: 10px;
        padding: 10px;
    }
}
