@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

html {
  font-family: 'Open Sans', 'Lato', sans-serif;
  font-size: 16px;
}

body {
  margin: 0;
}

#container {
  min-height: 600px;
}

#header-container {
  background-color: #00583D;
  width: 100%;
  height: 7rem;
  position: relative;
}

#main-header {
  width: 65rem;
  margin: auto;
  display: flex;                    /* enable flexbox */
  justify-content: space-between;   /* push logo left, nav right */
  align-items: center;              /* vertically center items */
}

.main-button {
  background-color: #FFCA2C;
  border: 1px solid #785d03;
  border-radius: 3px;
  color: #0a5640;
  cursor: pointer;
}

.main-button:hover {
  background-color: #FFD95E;
}

.big-button {
  font-size: 1.2rem;
  width: 5rem;
  height: 2rem;
}

.small-button {
  padding: 0.5rem 1rem;
}

#search-result {
  margin-bottom: 3rem;
}

.footer {
  position: relative;
  width: 100%;
  border-top: 6px #FFC525 solid;
  padding: 0 10%;
}

.footer-container {
  margin: 4rem auto 10px;
  width: 65rem;
}

.footer-content {
  margin-top: 1rem;
}

.footer-link {
    color: #0a5640;
    text-decoration: none;
}

.footer-link:hover {
    color: #785D23;
    text-decoration: underline;
    text-decoration-color: #FFC525;
}

.hr-short {
  width: 30px;
  margin-left: 0;
}