* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Calibri, Arial, sans-serif
}

*:not(input):not(textarea){
  user-select: none;
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
}

body, html {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main{
    flex: 1;
}

.semicircle {
  margin-top:-29px;
  width: 100%;
  height: 30px;
  overflow: hidden;
}

.semicircle > div {
  width: 110%;
  height: 100px;
  border-radius: 50% 50% 0 0;
  position: relative;
  left: -5%;
}




.dots {
    margin-top: 8px; /* espace sous le h2 */
    display: flex;
    gap: 8px; /* espace entre les ronds */

}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot1 { background: #570072; }
.dot2 { background: #AA0056; }
.dot3 { background: #F00008; }