@import url("https://fonts.googleapis.com/css?family=Lato:400|Montserrat:400");

:root {
  --bg-dark: #1a252f;
  --bg-white: #ffffff;

  --white: #ffffff;

  --midnight-blue: #003366;
  --dark-blue: #333652;
  --blue: #055c9d;

  --container-max-width: 750px;
}

html {
  font-size: 120%;
}

body {
  background: white;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  /* margin: 3rem 0 1.38rem; */
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--midnight-blue);
}

h1 {
  margin-top: 0;
  font-size: 2.488rem;
}

h2 {
  font-size: 2.074rem;
}
h2.light {
  color: var(--white);
}

h3 {
  font-size: 1.728rem;
}

h4 {
  font-size: 1.44rem;
}

h5 {
  font-size: 1.2rem;
}

small,
.text_small {
  font-size: 0.833rem;
}

.divider-custom {
  margin: 0.25rem 0 0.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.divider-custom .divider-custom-line {
  width: 100%;
  max-width: 7rem;
  height: 0.25rem;
  background-color: var(--midnight-blue);
  border-radius: 1rem;
  border-color: var(--midnight-blue);
}

.divider-custom.divider-light .divider-custom-line {
  background-color: #fff;
}

.container {
  max-width: var(--container-max-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  margin: 4rem auto 4rem;
}

header,
section,
footer {
  display: flex;
  justify-content: center;
  align-content: center;
}

header {
  padding-top: calc(4rem + 74px);
  padding-bottom: calc(4rem + 74px);
}

/* header, */
.about
/* footer */ {
  background-color: var(--dark-blue);
  color: var(--white);
}

header .container img {
  /* width: 250px;
  height: 250px; */
  margin: 1rem;
}

header .container h1 {
  font-size: 4rem;
  margin: 0;
}

header .container p {
  margin: 0;
  font-size: 1.6rem;
  color: var(--midnight-blue);
}

.project {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #dedede;
  /* b4d455 */
  margin-bottom: 2rem;
  border-radius: 0.25rem;
  padding: 0.5rem;
}

.project h3 {
  grid-column: 1/3;
  margin-bottom: 0.5rem;
}

footer {
  padding: 1rem;
  background-color: var(--dark-blue);
  color: var(--white);
}

footer .container {
  margin: 0;
  padding: 1rem;
}

.copyright {
  /* padding: 0; */
  background-color: var(--bg-dark);
  color: var(--white);
}

.copyright .container {
  padding: 1.5rem 0;
  margin: 0;
}
