@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@800&family=Open+Sans:wght@600;800&display=swap');

body {
  background-color: #e3e7eb;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

nav {
  display: flex;
  background-color: #f4f3f3;
  height: 8vh;
  margin: 0;
}

nav div {
  display: flex;
  flex: 50%;
  align-items: center;
}

nav div ol {
  display: flex;
  margin: 0;
  padding: 0;
}

nav ol li {
  display: inline;
  margin-left: 40px;
}

nav div.left-side {
  padding-left: 90px;
}

nav div.right-side {
  padding-right: 90px;
  display: flex;
  justify-content: flex-end;
}

nav div.right-side a {
  font-size: 15px;
  color: white;
  background-color: black;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  padding: 5px 10px;
}

a {
  color: black;
  text-decoration: none;
}

.container {
  display: flex;
  flex-direction: column;
}

.content {
  height: 92vh;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content div {
  width: 500px;
}
.content h2 {
  text-align: center;
}

#name,
#phone,
#email,
#subject {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: none;
  box-shadow: 0px 2px 4px rgb(150, 150, 150);
  margin-top: 3px;
  margin-bottom: 20px;
  border-radius: 5px;
}

#message {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: none;
  box-shadow: 0px 2px 4px rgb(150, 150, 150);
  margin-top: 3px;
  margin-bottom: 20px;
  border-radius: 5px;
  resize: none;
}

.submit-btn {
  border-radius: 18px;
  padding: 6px 30px;
  border: none;
  cursor: pointer;
  background-color: black;
  font-family: 'Open Sans', sans-serif;
  color: white;
  float: right;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: white;
  color: black;
}

.submit-btn:active {
  background-color: rgb(172, 172, 172);
}
