@font-face {
  font-family: Continental;
  src: url("TWKContinental-Bold.ttf") format("truetype");
}

@font-face {
  font-family: Continental;
  src: url("TWKContinental-Bold Italic.ttf") format("truetype");
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;

  flex-direction: column;
  justify-content: space-between;

  font-family: "Continental";

  color: black;

  -webkit-text-size-adjust: 100%;
}

.content {
  z-index: 1;
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;

  line-height: 3.2rem; /* --------------------------------------------------- INTERLIGNE!!! */

  padding-top: 20px;
  /*background-color: rgb(0, 195, 255);*/
}

/* --------------------------------------TITRE */

.home-title {
  position: fixed;
  left: 50%;
  transform: translateX(-50%); /* pulls it back to true center */
  z-index: 1000;
  text-align: center;

  font-size: 4rem;
  font-weight: bold;
}

/* --------------------------------------COLONNES */

.container {
  display: flex;
  gap: 2px;

  flex-wrap: nowrap;
}

.column1,
.column2,
.column3 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background-color: rgb(255, 0, 238);*/
}

.column1 {
  justify-content: left;
  padding-left: 30px;
}

.column3 {
  justify-content: right;
  padding-right: 30px;
}

.column1:hover {
  color: rgb(0, 0, 0);
  font-style: italic;
}
.column2:hover {
  color: rgb(0, 0, 0);
  font-style: italic;
}
.column3:hover {
  color: rgb(0, 0, 0);
  font-style: italic;
}

.footer {
  z-index: 1;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0vh;
  font-weight: 700;
}

/* -------------------------------------- LIENS */

.column-link {
  text-decoration: none;
  color: inherit;
  flex: 1;
  display: flex;
}

/* Curseur personnalisé rond noir */
body {
  cursor:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="10" cy="10" r="8" fill="rgb(124, 58, 202)"/></svg>')
      10 10,
    auto;
}

a,
button,
.column-link,
.home-link {
  cursor:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="10" cy="10" r="8" fill="rgb(124, 58, 202)"/></svg>')
      10 10,
    pointer;
}

/* --------------------------------------NAVIGATION */
.home-link {
  text-decoration: none;
  color: inherit;
}

nav {
  display: flex;
  justify-content: center;
}
nav a {
  text-decoration: none;
  color: inherit;
  font-size: 4rem;
}
nav a:hover {
  font-style: normal;
  color: rgb(124, 58, 202);
}

/* --------------------------------------RESPONSIVE */

@media (max-width: 1020px) {
  .content {
    font-size: 2.5rem;
    line-height: 2.3rem;
    padding-top: 20px;
  }

  .home-title {
    font-size: 2.5rem;
  }

  nav a {
    font-size: 2.5rem;
  }
}

@media (max-width: 700px) {
  .content {
    font-size: 1.4rem;
    line-height: 1.4rem;
    padding-top: 16px;
  }

  .home-title {
    font-size: 1.4rem;
  }

  .container {
    gap: 0;
  }

  .column1 {
    padding-left: 10px;
  }

  .column3 {
    padding-right: 10px;
  }

  .column1,
  .column2,
  .column3 {
    font-size: 1.4rem;
  }

  nav a {
    font-size: 1.4rem;
  }
}
