@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-orange: #d25222;
  --primary-blue: #002538;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #002538;
  color: #494949;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

img {
  width: 80%;
  max-width: 400px;
  height: auto;
}

a {
  outline: none;
  text-decoration: none;
  padding: 2px 1px 0;
}

a:link {
  color: var(--primary-orange);
}

a:visited {
  color: var(--primary-orange);
}

a:hover {
  color: #e77045;
}

a:active {
  color: var(--primary-orange);
}
