/* Global reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Style for the body */
        body, html {
            height: 100%;
            font-family: Arial, sans-serif;
            color: white;
        }

        /* The container for the cover image */
        .cover-container {
            position: relative;
            height: 100vh;
            background-image: url('images/time-cafe-milano.jpg'); /* Replace with your image URL */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Centering text in the middle of the cover */
        .cover-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            padding: 20px;
            max-width: 90%;
        }

        /* Title styling */
        .cover-title {
            font-size: 4.5rem;
            font-weight: bold;
            margin-bottom: 10px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }

        /* Subtitle styling */
        .cover-subtitle {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }

        /* Button styling - square buttons */
        .cover-button {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 200px;      /* same width and height */
            height: 60px;
            background-color: #000;
            color: white;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 10px;
            transition: background-color 0.3s;
            margin: 7px 10px;
            text-align: center;
            padding: 10px;
            box-sizing: border-box;
            /* allow wrapping text inside the button */
            white-space: normal;
            line-height: 1.2;
            opacity: 0.8;
        }

        .cover-button:hover {
            background-color: #121212;
        }

        /* Styling for the footer */
        .footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: black;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            font-size: 0.75rem;
        }

        /* Responsive design for smaller devices */
        @media (max-width: 768px) {
            .cover-title {
                font-size: 2.5rem;
            }

            .cover-subtitle {
                font-size: 1.2rem;
            }

            .cover-button {
                width: 150px;
                height: 50px;
                font-size: 0.9rem;
                padding: 8px;
            }
        }

        @media (max-width: 480px) {
        
            .cover-title {
                font-size: 4rem;
            }

            .cover-subtitle {
                font-size: 1rem;
            }

            .cover-button {
                width: 150px;
                height: 50px;
                font-size: 0.8rem;
                padding: 6px;
            }
            
            .footer {
                font-size: 0.65rem;          
            }
            
        }
