* {
  color: #0220FE;
}

body {
  font-family: 'Monument Extended Regular';
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.content {
  width: 83%;
  margin: auto;
}

.contact-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 9%;
  margin-bottom: 16%;
}

.h-1 {
  width: 21%;
}

nav {
  position: relative;
  display: flex;
  flex-direction: column;
}

nav a {
  text-decoration: none;
  margin-bottom: 1.5vw;
  font-size: 1.4vw;
}

nav a:hover {
  font-family: 'Monument Extended Bold';
  letter-spacing: 0.25em;
  text-decoration: none;
}

.active {
  font-family: 'Monument Extended Bold';
  letter-spacing: 0.25em;
  position: relative;
  display: block;
  color: #FF5C8B;
}

.active::before {
  display: inline-block;
  position: absolute;
  left: -1.8vw;
  top: 20%;
  content: '';
  width: 0.72vw;
  height: 0.72vw;
  border-radius: 50%;
  background-color: #FF5C8B;
}

.body {
  width: 79%;
}

h1 {
  font-size: 2.5vw;
  margin-bottom: 4.5vw;
}

.body h2 {
  font-size: 1.8vw;
  line-height: 2.8vw;
  margin-top: 4.5vw;
}

.bold {
  font-family: 'Monument Extended Bold';
}

form {
  width: 62%;
}

label {
  display: block;
  width: 100%;
  font-size: 1.4vw;
  margin-bottom: 0.9vw;
}

input, textarea {
  width: 100%;
  border: 0.3vw solid #0220FE;
  border-radius: 0.4vw;
  padding: 0.5vw;
  outline: none;
  margin-bottom: 3vw;
  font-family: 'Monument Extended Regular';
  box-sizing: border-box;
}

textarea:last-of-type {
  margin-bottom: 1vw;
}

form button {
  background-color: white;
  font-family: 'Monument Extended Regular';
  font-size: 1.4vw;
  border: none;
  float: right;
}

form button:hover {
  cursor: pointer;
  color: #FF5C8B;
}

footer {
  font-size: 0.8vw;
  padding: 3vw 0;
  display: flex;
  justify-content: space-between;
}

footer a {
  text-decoration: none;
  margin-left: 2vw;
}

.flex {
  display: flex;
}