
body {
  background: #151515;
  color: rgba(255, 255, 255);
  font-family: Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h3, h4 {
  margin: 0;
}

a,
img {
  display: block;
}

p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

button {
  cursor: pointer;
}

input, button {
  font-size: 14px;
  color: #ffffff;
}

::placeholder {
  color: rgba(255, 255, 255, 0.6)
}

.row {
  display: flex;
  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: start;
}

.divider {
  width: 65%;
  height: 1px;
  border-top: rgba(255, 255, 255, 0.2) 1px solid;
  margin: 40px auto 30px auto;
}

#top-bar {
  display: flex;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 46px;
  top: 0;
  font-size: 14px;
  line-height: 46px;
  background-color: rgba(33, 33, 33, 0.85);
  overflow: hidden;
  z-index: 1000;
}

#top-nav {
  display: inline-flex;
  height: 100%;
  max-width: 1070px;
  padding: 0 16px;
  overflow: auto;
}

#top-nav a {
  height: 100%;
  box-sizing: border-box;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-block;
  padding: 0 16px;
}

#top-nav a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

#top-nav a.selected {
  border-bottom: 2px #00E676 solid;
}

#footer {
  margin: 16px 0;
  text-align: center;
}

#footer a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  display: inline;
}

#footer a:not(:last-child) {
  margin-right: 25px;
}

#email-form {
  position: relative;
  margin-top: 16px
}

#email-input {
  background-color: transparent;
  border: none;
  height: 24px;
  line-height: 24px;
  padding: 8px 0 8px 8px;
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

#email-input:focus {
  outline: none;
  box-shadow: 0 0 3px 3px rgba(255, 255, 255, 0.3);
}

#submit-button {
  padding: 0;
  position: relative;
  border-radius: 100%;
  border: none;
  height: 40px;
  width: 40px;
  text-align: center;
  margin-left: 15px;
  line-height: 50%;
}

#submit-button svg {
  width: 28px;
  height: 28px;
}

#submit-button:hover, #submit-button:focus {
  outline: 0;
  background-color:rgba(255, 255, 255, 0.7);
  transition: background-color .3s;
}

#success-message {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0;
}

#error-message {
  visibility: hidden;
  margin-top: 8px;
  margin: 8px 0 0 0;
  color: #CF6679;
}