/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 1;
    box-sizing: border-box;
}

.banner {

.line-height-percentage {
    line-height: 120%; /* 150% of the font size */
}

width: 100%; /* Adjust the width as needed */
  max-height: 65px; /* Adjust the maximum height to make it smaller */


    display: block; /* Ensures the image is displayed as a block element */
}


    
        /* Style the horizontal rule to make it red */
        hr.red {
            border: 0;
            height: 2px;
            background-color: red;
            margin: 1px 0; /* Add some margin for spacing */
        }
   



/* Basic styling */
body {
    font-family: Arial, sans-serif;
    
    background-color: #f5f3ef;

    line-height: 1.6;
}

header {
    background: #4034eb;
    color: #fff;
    padding: 1rem;
}




header h1 {
    margin: 0;
       font-size: 1.875em; 
}


header h2 {
    margin: 1;
      font-size: 1em; 
}





nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 15px;
    
    .success-message {
    color: green;
    font-weight: bold;
    background-color: #e6ffe6;
    border: 1px solid green;
    padding: 10px;
    margin: 10px 0;
}
.error-message {
    color: red;
    font-weight: bold;
    background-color: #ffe6e6;
    border: 1px solid red;
    padding: 10px;
    margin: 10px 0;
}
    
    
}


footer {
    background: #4034eb;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}
