body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: Helvetica, Arial, sans-serif;
}

/* Nav-bar */
nav.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 1rem 3rem;
}

/* Nav-bar Logo */
.logo img {
  height: 50px;
  width: auto;
}

/* Nav-bar Menu */
.menu {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  gap: 2rem;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #555555;
}

/* Nav-bar Social Icons */
.social {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}



/* Form */
form {
  border: 2px solid #000;
  width: 50%;
  height: 80%;
  padding: 32px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  
  /* glassmorphism bkg */
  background-color: rgb(255,255,255,0.35);
  border: 1px solid rgb(255,255,255,0.18);
  box-shadow: rgb(31,38,135,0.35) 0 8px 32px;
}

/* target form */
input[type=text], input[type=email], input[type=phone] {
  width: 40%;
  height: 10%;
  background-color: lightgrey;
  border-radius: 5px;
}

input[type=msg] {
  width: 100%;
  height: 15rem;
  background-color: lightgrey;
  border-radius: 5px;
  align-items: start;
}

input[type=text]:focus, input[type=email]:focus, input[type=phone]:focus, input[type=msg]:focus {
  /* change the color of the hightlight */
  outline-color: orange;
  background-color: #f8f8f8;
}
