 /* small */
 @media (min-width:768px) {
    .container{
      width: 750px;
    }
  }
  /* medium */
  @media (min-width:992px) {
    .container{
      width: 970px;
    }
  }
  /* large */
  @media (min-width:1200px) {
    .container{
      width: 1170px;
    }
}
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('../images/header.jpg'); /* Use your header image here */
    background-size: cover;
    background-position: center;
    padding: 20px;
    color: white;
    height: 200px; /* Adjust the height as needed */
}

header .logo-container h1 {
    font-size: 50px;
    font-weight: bold;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    color: rgb(26, 166, 254); /* Adjusted hover color */
}

main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    text-align: center; /* Center the content */
}

h2 {
    color: #333333;
    font-size: 36px; /* Adjust font size if needed */
    margin-bottom: 20px;
}

.social-media {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.social-link {
    margin: 0 10px;
}

.social-link img {
    width: 30px;
    height: 30px;
}
.butto {
    display: block;
    width: 50%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    margin-left: 25%;
}

.butto:hover {
    background-color: #148fdb;
}

form {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: auto;
}

form label {
    display: block;
    font-size: 16px;
    color: #666666;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

form button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #1aa6fe; /* Adjusted button color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

form button:hover {
    background-color: #148fdb; /* Adjusted button hover color */
}

footer {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
}
