@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Lato:400|Droid+Sans:700);
@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@200&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap);

:root {
  --color-movial-brand: rgb(0, 102, 179);
  --color-movial-black: #010c12;
  --color-movial-brand-dark: #005596;
  --color-movial-dark: #021130;
  --color-light-grey: #eee;
  --color-medium-grey: #555;
  --color-dark-grey: #333;
  --line-height-normal: 150%;
  --line-height-narrow: 120%;
  --font-size-xxxl: 60px;
  --font-size-xxl: 50px;
  --font-size-xl: 35px;
  --font-size-l: 25px;
  --font-size-m: 20px;
  --font-size-s: 16px;
  --space-xs: 5px;
  --space-s: 15px;
  --space-m: 20px;
  --space-l: 30px;
  --space-xl: 40px;
  --space-xxl: 60px;
  --space-xxxl: 120px;
  --media-large: 800px;
}
html,
body {
  position: relative;
  width: 100%;
  height: 100%;

  background-color: var(--color-movial-black);
  background-image: url("../../images/movial-bg.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;

  color: #fff;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
body {
  color: #fff;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
}
a {
  color: rgb(0, 100, 200);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:visited {
  color: rgb(0, 80, 160);
}
label {
  display: block;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  padding: 0.8em;
  margin: 0 0 0.8em 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 2px;
}
input:disabled {
  color: #ccc;
}
input[type="range"] {
  height: 0;
}
button {
  color: #333;
  background-color: #f4f4f4;
  outline: none;
}
button:disabled {
  color: #999;
}

button:focus {
  border-color: #666;
}
h1 {
  font-family: "Nunito";
  font-weight: 700;
  letter-spacing: 2px;
}
h2 {
  font-family: "Nunito";
  font-weight: 700;
  font-size: 30px;
  margin-top: 0px;
}
h3 {
  font-family: "Nunito";
  font-weight: 700;
  font-size: 26px;
}
h4 {
  font-family: "Nunito";
  font-weight: 700;
  letter-spacing: 1px;
}
h5 {
  font-family: "Nunito";
  font-weight: 700;
}
p {
  padding-bottom: var(--space-m);
  line-height: var(--line-height-normal);
  font-weight: 150;
}
