::selection {
  background:#ef3f5a;
  color:#fff;
}
body {
  background:url('../img/bg.jpg') center/cover;
  height:100vh;
  font-family: "Lato", sans-serif;
  margin: 0;
  color:#fff;
}
a {
  color:inherit;
  text-decoration: none;
}
.wrapper {
  position: fixed;
  top:25px;
  bottom:25px;
  left:100px;
  right: 100px;
}
nav {
  display: flex;
  justify-content: flex-end;
  align-items:center;
}
a:first-child {
  margin-right: auto;
  font-size: 24px;
}
a+a {
  margin-left: 25px;
}
a:last-child {
  border:1px solid rgba(255,255,255,0.5);
  padding:10px 25px;
  transition: .3s all ease-in-out;
}
a:last-child:hover {
  background:#ef3f5a;
  border-color:#ef3f5a;
}
.discover {
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align: center;
}
h1 {
  margin-top: 0;
  font-size: 48px;
}
form {
  display: flex;
}
input {
  border:0;
  padding:10px 25px;
  font-family:inherit;
}
[type="text"] {
  width: 400px;
  outline:none;
}
[type="submit"] {
  background:#ef3f5a;
  color:#fff;
  font-size: 16px;
  cursor:pointer;
}
small {
  position: absolute;
  bottom:0;
  right: 0;
}