       /* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


 h1 {
    font-size:1.5em;
    margin-left: 10px;
}

.logo_p_area {
    font-size: 1.3em;
    margin: 0;
    width: 100%;
    text-align: left;
    padding: 0.3em 1em;
    color: #333;
    line-height: 1.4;
}


header .examples-link {
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
    margin-right: 2em;
    margin-left: auto;
}
.logo-container {
    display: flex;
    align-items: center; 
    flex-grow: 1; /* Ensure this container can grow inside the header */
}

    
    .logo_model{
 max-width: 100%;
      height: auto;
      display: block; 
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5em;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
}

header img {
    height: 50px;
    flex-shrink: 0; /* Prevent the image from shrinking */
}

.logo-container h1 {
    font-size: 1.5em;
    margin-left: 10px;
    flex-grow: 1; /* Allow the h1 to take the available space */
    text-align: left; /* Align the text to the left inside the container */
    white-space: nowrap; /* Prevent h1 from breaking into multiple lines (optional) */
    overflow: hidden; /* Ensure no overflow occurs */
    text-overflow: ellipsis; /* Optional: Adds ellipsis for overflowed text */
}


    
    .logo_model{
 max-width: 100%;
      height: auto;
      display: block; 
}



.d_none{
display:none;
}


.margin_1em{
margin:0.5em 0 0.5em 0;
}




/* Footer */
footer {
    margin-top: auto;
    padding: 10px 20px;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #007bff;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}


/* Style the container and logo */
.logo-container {
    display: flex;
    align-items: center;
    
    
}

/* Default image styling */
.responsive-logo {
    max-width: 100%; 
    height: auto; 
}

 .gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 1em; /* Space between items */
            justify-content: center;
            padding: 1em;
            margin:1em 1em 0em 1em;
            
             background-image: url('https://supalogo.com/full-page.png'); 
    		background-repeat: repeat; 
        }

        .gallery a {
            display: block;
            width: auto;
            text-align: center;
            transition: transform 0.3s ease-in-out;
        }

        .gallery a:hover {
            transform: scale(1.05);
        }

        .gallery img {
            width: auto;
            height: auto;
            border-radius: 8px; 
        }

  .button {
    width: 100%;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.button:hover {
    background-color: #218838;
}     



/* Media query for mobile screens (max-width 768px) */
@media (max-width: 880px) {
	
 
    
}

@media (max-width: 768px) {
	
		.logo-container h1 {
    font-size: 1em;
}

.logo_p_area { font-size: 1.1em;}		
    
}


@media (max-width: 550px) {
 .logo_p_area { font-size: 1em;}	
}

/* Media query for very small screens (max-width 480px) */
@media (max-width: 480px) {
  .logo_p_area { font-size: 0.9em;}
}

       