:root {
  --yellow: #f5bb45;
  --orange: #d54a29;
  --dark: #0f1d2a;
  --teal: #56c3b7;
}

body {
  color: #fff;
  font-family: "Mulish", sans-serif;
  display: grid;
  height: 100vh;
  width: 100vw;
  place-items: center;
}
body .center {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 100vh;
  padding: 0 30px;
  box-sizing: border-box;
}
body .center .logo {
  max-height: 50vh;
}
body .center .logo .left {
  fill: var(--yellow);
}
body .center .logo .right {
  fill: var(--orange);
  box-shadow: 0 0 10px var(--teal);
}
body .center .text {
  margin-top: 3vh;
  max-height: 15vh;
}
body .center .text path {
  fill: var(--teal);
}
body .center p {
  font-size: 24px;
  font-weight: 100;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 50px;
}
body .center .mailme {
  text-align: center;
  text-transform: lowercase;
  color: var(--teal);
  font-size: 30px;
  font-weight: 400;
  position: relative;
  margin: auto;
}
body .center .mailme svg {
  height: 80px;
  width: 80px;
  fill: var(--yellow);
  position: absolute;
  top: 5px;
  left: -90px;
}
body .center .mailme div {
  text-transform: lowercase;
  font-weight: 400;
}
body .center .mailme div span {
  font-weight: 400;
  color: var(--orange);
}
body .center form {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 1058px;
  margin: auto;
}
body .center form label {
  color: var(--yellow);
  position: absolute;
  top: 6px;
  left: 12px;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  transition: all 0.15s ease-in-out;
}
body .center form label.hide {
  opacity: 0;
}
body .center form input[type=text] {
  font-size: 24px;
  font-weight: 200;
  color: #fff;
  border: 2px solid var(--teal);
  border-radius: 12px;
  background: none;
  padding: 8px 16px;
  position: relative;
  margin-bottom: 10px;
  transition: all 0.15s ease-in-out;
}
body .center form input[type=text]:hover, body .center form input[type=text]:focus, body .center form input[type=text]:active {
  border-color: var(--orange);
}
body .center form input[type=submit] {
  background: none;
  border: none;
  border-bottom: 2px solid var(--orange);
  width: auto;
  margin: auto;
  color: var(--orange);
  text-transform: uppercase;
  padding: 5px 8px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
body .center form input[type=submit]:hover, body .center form input[type=submit]:focus, body .center form input[type=submit]:active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
  padding: 5px 12px;
}
body footer {
  position: absolute;
  bottom: 0;
  right: 8px;
  font-size: 16px;
  color: var(--teal);
}