@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
   font-family: 'Open Sans', sans-serif;
}
html,
body {
   height: 100%;
    width: 85%;
    margin: auto;
}
/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
  .flex-container {
    flex-direction: column;
  }
}

:root {
  --color-primary: #1471BD;
  --color-secondary: #6c757d;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
}



/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}
.flex-container {
  display: flex;
}

.flex-container {
  display: flex;
  flex-direction: row;
}
img {
  max-width: 100%;
  height: auto;
}
a:hover {
    border-bottom: groove;
}
