@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");

:root {
  --primary-color: #00274d;
  --primary-color-hover: #00274da4;
  --secondary-color: #d4af37;
  --background-color: #f7f7f7;
  --text-color: #333;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 14.4px;
  font-family: "Roboto", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

svg {
  height: 17px;
  width: 17px;
}

p {
  white-space: pre-line;
}

.highlight {
	box-shadow: 0 0 20px var(--primary-color) !important;
	opacity: 1;
}

.fade-out {
	box-shadow: 0 0 20px var(--primary-color) !important;
	opacity: 1;
	transition: box-shadow 0.5s ease, opacity 0.5s ease;
	box-shadow: 0 0 0 transparent !important;
}

.mobile-only {
  display: none;
}

/* Media queries - Responsive timeline on screens greater than 1650px wide */
@media screen and (min-width: 2050px) {
  body {
    background-color: rgb(229, 229, 229);
  }
}

@media (max-width: 768px) {
  .mobile-hide {
    display: none !important;
  }

  .mobile-only {
    display: inline-block;
  }
}