:root {
    /* either --dark-mode or --no-dark-mode */
    --color-scheme: var(--dark-mode);
  
    --font-family: system-ui;

  /* settings */
  --no-dark-mode: light;
  --dark-mode: dark light;
}

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

html {
    color-scheme: var(--color-scheme);
}

.container {
    margin: 0 auto;
    text-align: center;
}

.bottom {
    position: absolute;
    inset: auto 0 0;
    bottom: 0;
    padding: 0.5rem;
  }

  .header {
    text-align: center;
    position: relative;
    padding: 1rem;
    display: grid;
  }


  .articles {
    display: flex;
    background-color: blue;
    justify-content:flex-start;
    gap: 10px;
  }

  .article {
    background-color:grey;
    max-width: 50px;
  }
  .card {
    background-color: pink;
  }
  .logo {
    width: 50px;
  }