/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins";
  font-weight: 400;
  color: rgba(0,0,0,0.87);
}

div#page {
  margin: 2vh 3vw;
}

p {
  margin: 0.6vh 0;
}

h1 {
  margin-top: 2vh;
  margin-bottom: 1vh;
}

/* testing */
span.bold {
  font-weight: 500;
}

/* top nav */
nav#header-nav {
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #005e53;
  color: white;
  font-weight: 500;
  padding: 0 23px;
  justify-content: space-between;
}

a.logo {
  display: flex;
}
a.logo img {
  width: 44px;
}
