/*
  1. Use a more-intuitive box-sizing model.
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box; }

/*
  2. Remove default margin
*/
* {
  margin: 0; }

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; }

/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%; }

/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit; }

/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word; }

/*
  8. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate; }

/*----------------------------------------------------------------------------*/
body {
  font-family: "Noto Sans Mono";
  font-weight: bold;
  background-color: #263238; }

a {
  text-decoration: none; }

.body-container {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center; }

.main-container {
  display: flex;
  min-width: 400px;
  flex-direction: column;
  gap: 1em; }

.title-container {
  width: 100%;
  padding-left: 1em;
  padding-right: 1em;
  background-color: #263238;
  color: #455a64; }
  .title-container h1 {
    font-size: 3rem; }

.sites-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between; }
  .sites-container div {
    padding: 1ex;
    font-size: 2rem;
    color: #cfd8dc; }
  .sites-container div:hover {
    background-color: #455a64; }

/*# sourceMappingURL=main.css.map */
