html {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
    font-size: medium;
    color: #ffffff;

}


body {
    margin: 0;
    padding: 0;
}



.navbar {
      background: #111111 ;
      position: fixed;
      z-index: 1000;
      top: 0;
      left: 0;
      height: 90px;
      width: 100%;
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      margin: 0 !important;
      padding: 0 !important;


}

.navmenu ul  {
    list-style: none;
    display: flex;
    justify-content: right;
    gap: 30px;
    padding: 0;
    margin-right: 35px;
    font-size: large;
    
}

.navmenu li, a {
    color: #ffffff;
    text-decoration: none;
}

.navmenu li :hover {
    color: rgb(244, 149, 7);

}

.active {
    color: rgb(244, 149, 7);
;
}

.contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 100px;
   
}



.contacts > div {
  flex: 0 0 40%; /* Two per row with some spacing */
  flex-direction: column;
  background-color: #001f3f;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  justify-content: center;
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .contacts {
    margin: 30px; 
    gap: 20px;
  }

  .contacts > div {
    flex: 90%
  }
}




.contacts p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: large;
}

.message label {
    font-weight: bold;
    font-size: large;
}


.message input[type="text"],
.message input[type="email"],
.message textarea {
  width: 80%;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 16px;
  border: 2px solid #797878;
  border-radius: 4px;
  color: black;
}

.message input[type = "submit"] {
    border: none;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 10px 20px;
    font-size: large;
    font-weight: bold;
}


.message form {
  width: 100%;
  max-width: 600px;
  margin: auto;
  padding: 20px;
}

.btn1 {
    background-color: #1e90ff ;
    color: white;
    height: 1cm;
    font-size: large;
    border: none;
    border-radius: 8px;
}
.btn1:hover {
    cursor: pointer;
    background-color:  #008080 ;
}

.footer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 0;
    background-color: #001f3f ;

}

.social-links {
  display: flex;
   justify-content: center;
  align-items: center;
  margin-top: 100px;
 


}

.social-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  
}

@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
}
