/* RESET */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/*  FONTS */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

/* HEADER */
header {
  position: fixed;
  width: 100vw;
  height: 100px;
  background: black;
}

nav {
  width: 64rem;
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  background-color: black;
  overflow-x: hidden;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  margin-left: 25px;
  display: flex;
  width: 85%;
  height: 85%;
}

.logo h1 {
  margin-left: 25px;
  color: white;
}

.logo h1 a {
  color: white;
  text-decoration: none;
}

.logo h1 a:hover {
  color: deepskyblue;
}

nav ul {
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul li {
  margin-right: 25px;
  align-items: center;
  justify-content: center;
}

nav ul li:hover {
  border-bottom: 2px solid deepskyblue;
  transition: ease-in 0.2s;
}

nav ul li a {
  text-decoration: none;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 18px;
}

nav ul li a:hover {
  color: deepskyblue;
}

/* SECTION */
section {
  padding-top: 150px;
  padding-bottom: -150px;
}

.container {
  width: 64rem;

  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  width: 70%;
  border: 2px solid black;
  border-radius: 20px;
}

form {
  padding: 20px;
  width: 100%;
}

form h2 {
  text-align: center;
}

.fix {
  margin-bottom: 25px;
}

.fixlabel {
  margin: 0;
}

input,
textarea,
fieldset,
select {
  outline: none;
  font-size: 16px;
}

input,
label,
select {
  margin: 20px 0px 20px 0;

  border: none;
}

p,
label {
  margin-left: 10px;
}

input {
  margin-left: 10px;
  border-bottom: 1px solid black;
}

textarea {
  width: 100%;
  height: 100%;
  font-size: 16px;
}

button {
  width: 100%;
  margin-top: 25px;
  font-size: 16px;
  background-color: black;
  border: none;
  color: white;
  border-radius: 20px;
  cursor: pointer;
}

/* FOOTER */
footer {
  margin-top: 50px;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: black;
  color: white;
}

footer a {
  color: deepskyblue;
}
