/* Global */
::selection {
  background:deeppink;
  color:#fff;
}
body {
  background:url('../img/bg.jpg') no-repeat center/cover;
  height: 100vh;
  font-family: 'Lato', sans-serif;
  color:#fff;
  padding:25px 100px;
}
a {
  color:inherit;
  text-decoration: none;
}
/* Navigation */
.main-nav {
  text-align: right;
  position: relative;
}
.main-nav a:first-child {
  position: absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  font-weight: 700;
  font-size: 24px;
}
.main-nav a:last-child {
  display: inline-block;
  padding:10px 20px;
  border:1px solid rgba(255,255,255,0.5);
}
.main-nav a:last-child:hover, [type="submit"] {
  background:#ef3f5a;
  border:1px solid #ef3f5a;
}
.main-nav a+a {
  margin-left: 25px;
}

/* Titre & form */
.discover {
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  text-align: center;
}
.discover h1 {
  font-size: 48px;
  font-weight: 700;
}
[type="text"] {
  padding: 10px 25px;
  width: 400px;
  border: 1px solid white;
  outline:0;
}
[type="submit"] {
  padding:10px 20px;
  color:inherit;
  cursor:pointer;
}
/* Footer */
small {
  position: absolute;
  right: 100px;
  bottom: 25px;
}