body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  background-color: black;
  margin: 0;
  padding: 0;
  color: white;
}
.logo {
  top: 10px;
  left: 10px;
  position: absolute;
}
.container {
  display: flex;
  gap: 20px;
}
.message-container {
  margin-top: 5%;
  margin-left: 40px;
}
.contact-container {
  width: 600px;
  margin: 10%;
  padding: 20px;
}
p,
label {
  color: #007bff;
}

h1 {
  text-align: center;
  font-size: 45px;
  color: rgb(0, 174, 255);
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-bottom: 8px;
}

input,
textarea {
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  resize: none;
  border: 1px solid #ccc;
}

button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}
#nav {
  display: flex;
  justify-content: right;
  gap: 10px;
  margin-right: 15px;
}
.tab {
  text-decoration: none;
  border-radius: 100px;
  color: white;
  padding: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: rgb(26, 72, 198);
  height: 20px;
  width: 80px;
  margin-top: 10px;
}
a {
  color: white;
  text-decoration: none;
  padding: 10px;
}
.tab:hover {
  background-color: #1d70b9;
  font-size: 20px;
  height: 27px;
  width: 100px;
  color: black;
}
a:hover {
  color: white;
  font-size: 20px;
}
