/* /Background */
body {
  background-color: #faab84b9;
  background-attachment: scroll; 
  margin: 0;
  padding: 0;
}
/* /Background */

/* Reset des marges et des rembourrages */
* {
    margin: 0;
    padding: 0;
}

/* Grille CSS */
.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.container2 {
  display: block;
  max-width: 500px;
  margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
}

.col {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* /Grille CSS */

/* Alignment thomas_img + title */
.header {
    display: flex;
    align-items: center;
}
/* /Alignment thomas_img + title */

.thomas_img {
    max-width: 50%;
    border-radius: 50%;
    border: 3px solid rgb(242, 247, 255);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.img-proj {
    max-width: 80%;
    border-radius: 10px;
    max-width: 430px;
    border: 2px solid rgb(242, 247, 255);
}

.video {
    width: 420px; 
    height: 300px; 
}


.title {
    color: aliceblue;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


/* Menu */
.menu {
    list-style: none;
    margin-bottom: 10px;
}

.menu li {
    display: inline-block;
    margin-right: 20px;
}

.menu li a {
    text-decoration: none;
    color: aliceblue;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
/* /Menu */

.line {
    border-bottom: 2px solid #ffffff;
    width: 270px;
    margin: auto;
}

.text {
    text-align: center;
    padding: 20px;
    color: rgb(0, 0, 0);
    border: 0px solid black;
    background-color: rgba(255, 255, 255, 0.298);
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgba(35, 37, 74, 0.324);
    backdrop-filter: blur(5px);
  }


.small-title {
    padding-bottom: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.small-txt {
    padding-top: 30px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

@media screen and (max-width: 480px) {
    .row {
      flex-direction: column;
    }
    .title h1 {
        font-size: 24px;
    }
    .menu li {
      font-size: 14px;
    }
    .header {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .col {
      width: 100%;
    }
    .img-proj {
      max-width: 80%;
    }
    .video {
      width: 100%; 
      height: 10 
    }
  }

@media screen and (max-width: 768px) {
    .container {
      max-width: 768px;
      margin: 0;
    }
    .row {
      margin: 5px;
    }
}