@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100;0,200;0,300;0,400;0,600;0,900;1,100;1,200;1,400;1,900&display=swap");

body {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  color: #252525;
  background-color: #f2f2f260;
  background-image: url(image/shadow_background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

/*
 *
 Encart photo profil
 *
 */

/*Encart Nom et prénom*/
h1 {
  font-weight: normal;
  margin: 0;
}
.profile_name {
  font-size: 3rem;
}
.bold_title {
  font-weight: 600;
}
.profile_details {
  display: flex;
  align-items: center;
  padding: 25px 40px;
}

.box_avatar {
  padding-right: 50px;
}

.avatar {
  width: 130px;
  height: 130px;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  background-color: #b7b9a6;
  border-radius: 50%;
  border: solid 2px #dcdcdc;
}

/*Encart logo profils en ligne*/
.profile_links {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  padding-left: 0;
}

.detail_profile_link:hover {
  transform: scale(0.9);
}

.detail_profile_link {
  border-radius: 10px;
  width: auto;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.logo_linkedin {
  background-color: #00669c;
}
.logo_openclassroom {
  background-color: #7451eb;
}
.logo_hackerRank {
  background-color: #0d141e;
}
.logo_github {
  background-color: #fff;
  border: solid 1px #f2f2f2;
}
.logo_portfolio {
  background-color: #b7b9a6;
}

.detail_profile_link img {
  max-width: 35px;
}

ul li {
  color: #252525;
  font-size: 12px;
  max-width: 55px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-right: 10px;
}

/*
 *
 Encart container
 *
 */

.container {
  margin: 40px auto;
  max-width: 40em;
  box-shadow: 0 0 20px #000000ad;
  border-radius: 10px;
  background-color: #fff;
}

.divider {
  border: 1px solid #f2f2f2ad;
}

/*Encart titre*/
h2 {
  font-size: 1.3rem;
  font-weight: normal;
  margin-top: 0;
}
.trophy_reasons {
  font-size: 30px;
  color: #f2f2f2;
}
.different_font_style {
  color: #b7b9a6;
  font-weight: normal;
  font-size: 2rem;
}

/*Encart liste des raisons*/
.five_reasons {
  max-width: 35em;
  margin: 0 auto;
  padding: 25px 40px;
}
.detail_five_reasons {
  display: flex;
  margin: 10px 0;
  align-items: center;
  text-align: justify;
}

ol {
  counter-reset: my-counter;
  list-style-type: none;
  padding: 0;
}

ol li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  margin-right: 15px;
  font-weight: 600;
  font-size: 60px;
  min-width: 40px;
}

/*footer*/
.copyright {
  text-align: center;
  color: #fff;
  font-weight: 200;
  font-size: 14px;
}

@media (max-width: 600px) {
  .box_avatar {
    display: none;
  }
}
