@import url(https://fonts.googleapis.com/css?family=Raleway);
@import url(https://use.typekit.net/wdf4hia.css);

/*
* Fonts and colors
*/

:root {
  --font-family-primary: "Raleway", sans-serif;
  --text--primary-color: #fff;

  --primary-dark-blue: #071f38;
  --secondary-dark-blue: #1d3f63;
  --medium-blue: #41668d;
  --medium-light-blue: #7495b8;
  --light-blue: #b4cae2;
  --light-blue-2: #d5eaff;
  --dark-grey: #353535;

  --wide-max-width: 1260px;
}

h2 {
  vertical-align: center;
  text-align: center;
}

html,
body {
  margin: 0;
  height: 100%;
}

* {
  font-family: "Raleway";
  box-sizing: border-box;
}
p {
  text-align: justify;
}

main {
  display: block;
  width: 100%;
  background-color: var(--primary-dark-blue);
  background-image: radial-gradient(circle at 1px, rgba(83, 100, 117, 0.45) 1px, transparent 1px);
  background-size: 17px 17px;
  margin: 0;
}
ul {
  margin: 0;
}
ul.dashed {
  list-style-type: none;
}
ul.dashed > li {
  text-indent: -1px;
}
ul.dashed > li:before {
  content: "-";
  text-indent: -1px;
}
h1, h2, h3, h4, h5, h6 {
  text-align: start;
}