@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
  scroll-behavior: smooth;
  /* font-family: var(--type); */
}

:root {
  --black: #333;
  --background: #fff;
  --type: 'Cormorant Infant', serif;
  ;
  --red: #e22;
}

a{
  text-decoration:none;
}

body {
  background-color: var(--background);
}

/* MOBILE */

@media (max-width: 800px) {
  /* NAVBAR */
  .navbar {
    position: fixed;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    justify-content: space-between;
    align-items: center;
    /* background-color: green; */
    z-index: 100;
    pointer-events: none;
  }

  .navbar a {
    margin: 0.5rem;
    text-decoration: none;
    color: var(--black);
    /* font-weight: bold; */
    font-family: var(--type);
    pointer-events: all;
  }

  #infos {
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 1rem;

  }

  #adele-berson {
    font-size: 2rem;
    font-family: serif !important;
  }

  .date {
    font-style: italic;
  }

  #infos:hover {
    color: red;
  }

  #adele-berson:hover {
    color: red;
  }

}

/* LAPTOP / COMPUTER */

@media (min-width: 800px) {

  /* NAVBAR */
  .navbar {
    position: fixed;
    display: flex;
    flex-direction: column;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: space-between;
    /* background-color: green; */
    pointer-events: none;
    z-index: 100;
  }

  .navbar a {
    margin: 20px;
    text-decoration: none;
    color: var(--black);
    /* font-weight: bold; */
    font-family: var(--type);
    pointer-events: all;

  }

  #infos {
    font-style: italic;
    font-size: 2rem;
  }

  #adele-berson {
    font-size: 3rem;
  }

  .date {
    font-style: italic;
  }

  #infos:hover {
    color: red;
  }

  #adele-berson:hover {
    color: red;
  }
}
