body::before {
  content: "";
  position: fixed; /* Cover the entire viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('moro.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  opacity: 0.8; /* Adjust opacity as needed */
  z-index: -1; /* Ensure it is behind all other elements */
  pointer-events: none; /* Make sure it doesn't interfere with clicks */
}

/* Global Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures footer stays at the bottom */
}

h1.title {
    font-family: 'Lobster', cursive; /* Using a more stylish font */
    text-align: center;
    color: #2c3e50;
    margin-top: 20px;
    font-size: em; /* Increase the size of the text */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add a subtle shadow for a better look */
}

nav.del ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    background-color: none;
    margin: 0;
}

nav.del ul li {
    display: inline;
    margin-right: 15px;
}

nav.del ul li a {
    text-decoration: none;
    color: #007bff;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

nav.del ul li a:hover {
    color: #16375a;
}

/* Input Container Styles */
.input-container {
    display: flex;
    justify-content: flex-start; /* Aligns to the right */
    margin: 20px 10px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    bottom:  -50px;
    
}

.input-container button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.input-container button:hover {
    background-color: #6100b3;
}

/* Footer Styles */
footer {
    margin-top: none; /* Pushes footer to the bottom */
    background-color: none;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-around; /* Ensures even spacing between footer sections */
    align-items: center; /* Centers content vertically */
    font-size: 1.1em;
}

.footer-center {
    position: relative;
    left: -14px;
    bottom: -170px;
}


.footer-center {
    filter: drop-shadow(10px 7px 10px cyan)
}

.footer-contact a {
    text-decoration: dashed;
    color: #007bff;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #0056b3;
}

.note {
    padding: 20px;
    background-color: none;
    margin: 3px;
    border-radius: 5px;
    color: #333;
    font-size: 1.5em;
    line-height: 1.1;
    box-shadow: 0 4px 5px none;
}

@media (max-width: 768px) {
    .footer-contact{
        flex: 100%; /* Stacks footer sections vertically on smaller screens */
        text-align: center;
    }

    .input-container {
        justify-content: center; /* Centers the button on smaller screens */
    }
}
