* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  font-family: "roboto", sans-serif;
  padding: 0;
  margin: 0 auto auto auto;
  background-color: rgb(213, 213, 213);
}
body {
  max-width: 104rem;
  margin: 0 auto;
  padding-left: 4rem;
  padding-right: 4rem;
  background-color: white;
}
/* ******************* */
.myNameContainer {
  height: 8rem;
  width: 100%;
  padding-top: 4rem;
  display: flex;
  align-items: end;
  display: block;
}
.myName {
  font-size: 2.6rem;
  font-weight: 900;
  color: #111;
}
.myName:hover {
  color: blue;
}
.myContactsAndNavigation {
  height: 4rem;
  max-width: 100%;
  margin: 0 auto 2rem auto;
  display: flex;
}
.myAddressPhone {
  font-size: 1.2rem;
}
/* ******************* */
.mySmallPresentation {
  margin-left: 25%;
}
.lookingForward {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.lookingForward span {
  font-weight: 600;
}
.presentationText {
  font-size: 1.7rem;
  line-height: 1.5;
  margin-left: 3rem;
  margin-bottom: 1rem;
}
/* BTN */
.pdfBtnContainer {
  display: flex;
  align-items: center;
  height: 4rem;
  margin-bottom: 4rem;
}
/* BTN */
.btn a {
  text-decoration: none;
  color: white;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: white;
  border: 2px solid grey;
  color: grey;
}
.btn a:hover {
  color: grey;
}
.btn {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  border: none;
  color: white;
  background-color: #666;
  margin-right: 1rem;
  font-weight: 500;
  cursor: pointer;
}
/* BTN */
.btnLang {
  margin-right: 4rem;
}
.btnLang,
.printPDFbtn {
  height: 4rem;
  width: 4rem;
  border: 3px solid #333;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  background-color: white;
  color: #333;
  cursor: pointer;
}
.btnLang:hover {
  border: none;
  background-color: #333;
  color: white;
  transition: 0.3s ease;
}
/*** .print PDF button ***/
.printPDFbtn:hover {
  border: none;
  background-color: #2b0089;
  color: white;
  transition: 0.3s ease;
}
/* BTN */
.mainSentence {
  font-size: 1.9rem;
  text-align: right;
  margin-bottom: 4rem;
}
.structure2cols {
  display: grid;
  grid-template-columns: 5fr 3fr;
  margin-bottom: 10rem;
}
.aside-1col-container,
.main-1col {
  width: 100%;
}
.themeTitle {
  font-size: 1.9rem;
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.primaryTitle {
  font-size: 1.7rem;
  font-weight: 500;
}
.secondaryTitle {
  height: 2.6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1.7rem;
  font-weight: 400;
  border-bottom: 1px solid #999;
  margin-bottom: 0.8rem;
}
.secondaryTitle span {
  font-size: 1.4rem;
}
.addContentDate {
  font-size: 1.3rem;
  align-self: self-end;
}
.addContentDate span {
  margin-left: 4rem;
}
.contentText {
  height: fit-content;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.m-b05 {
  margin-bottom: 0.5rem;
}
.aside-1col {
  width: 75%;
  height: fit-content;
  margin-left: auto;
}
.aboutMeTitle {
  font-size: 1.9rem;
}
.aboutMeTxt {
  font-size: 1.4rem;
  margin-top: 0.5rem;
}
.titleBorder {
  border-bottom: 1px solid #999;
}
.spaceBetween {
  display: flex;
  justify-content: space-between;
}
.contentText-no-mb {
  height: fit-content;
  font-size: 1.4rem;
}
.contentDates {
  font-size: 1.3rem;
  margin-top: 2.5rem;
}
.contentDates-no-mt {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
footer {
  font-size: 1.2rem;
  /* color: #292562; */
}
/* MEDIA QUERIE - PRINT TO PDF */
/* MEDIA QUERIE - PRINT TO PDF */
@media print {
  @page {
    size: A4;
    margin: 10mm;
  }
  body {
    margin: 0;
    width: 100%;
  }
  .myName {
    font-size: 2rem;
  }
  .aboutMeTitle,
  .themeTitle {
    font-size: 1.6rem;
    margin-top: 2.6rem;
    margin-bottom: 0.5rem;
  }
  .primaryTitle,
  .secondaryTitle {
    font-size: 1.4rem;
  }
  .contentText,
  .secondaryTitle span {
    font-size: 1.3rem;
  }
  .addContentDate {
    font-size: 1.2rem;
  }
  .m-b05,
  .contentText {
    margin-bottom: 0.3rem;
  }
  .mainSentence {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .myContactsAndNavigation {
    margin-bottom: 0.5rem;
  }
  a,
  .pdfBtnContainer,
  .printPDFbtn,
  .btn,
  footer {
    display: none !important;
    visibility: hidden !important;
  }
}
