@font-face {
  font-family: "Sora";
  src: url("Sora-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Couleurs */
  --color-white: #FFFFFF;
  --color-light-gray: #E5E5EA;
  --color-gray: #C7C7CC;
  --color-blue: #685AED;
  --color-black: #000000;

  /* Marges */
  --margin-xs: 8px;
  --margin-sm: 16px;
  --margin-md: 32px;
  --margin-lg: 64px;
}

body {
  font-family: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  margin: 0;
}

.container {
  max-width: 680px; 
  height: 100vh;
  margin: 0 auto; 
  padding: var(--margin-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  /* overflow: hidden */
}

.topSection {
  width: 100%;
  display: inline-flex; 
  flex-direction: column;     
  text-align: baseline;
  margin-bottom: var(--margin-lg);
}

.bottomSection {
  display: inline-flex;
  flex-direction: column;
  text-align: baseline;
  align-items: center;
  gap: var(--margin-lg);
}

.pageTitle {
  font-size: 2rem;
  font-weight: 500;
  border-bottom: var(--color-black) 2px solid;
  padding-bottom: var(--margin-sm);
  margin: 0 0 var(--margin-sm) 0;
}

.pageTitle span {
  font-size: 1.5rem;
  font-weight: 300;
}

.articleTitle { 
  font-size: 1.5rem; 
  font-weight: 500; 
  margin: 0 0 var(--margin-sm) 0; 
}

.subTitle {
  font-size: 1rem;
  font-weight: 200;
  margin: 0;
}

.pageText {
  font-size: 1rem;
  font-weight: 200;
}

.startButton {
  align-items: center;
  background-color: var(--color-blue);
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 200;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  margin-bottom: var(--margin-md);
}

.startButton:hover,
.startButton:focus { 
  background-color: #16437E;
  color: #ffffff;
}

.startButton:active {
  background: #09223b;
  color: rgb(255, 255, 255, .7);
}

.startButton:disabled { 
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}