* {
  margin: 0;
  padding: 0;
}

.body {
  display: flex;
  overflow: hidden;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  height: 100vh;
  width: 100vw;
}

.homeBackground {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* ======== Texte site en construction ======== */

.constructionText-Container {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(300px, 50vw, 720px);
  right: 5vw;
  padding: 1%;
  padding-top: 2%;
  padding-bottom: 20%;
}

.construction {
  position: relative;
  display: block;
  text-align: center;
  font-size: clamp(12px, 2.5vw, 30px);
  color: #999;
  letter-spacing: 1px;
}

/* ======== Carte de visite ======== */

.card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top:clamp(80px, 9.8vw, 12vw);
  right: 5%;
  padding: 1%;
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: hidden;
  width: clamp(300px, 50vw, 720px);
  aspect-ratio: 2 /1;
  background-image: url('../images/cardHome_Background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 15px;
  border: 1px solid #FF730E;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.5);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 100%;
  width: 55%;
}

.text-contentContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 40%;
  width: auto;
}

.textName {
  position: relative;
  height: auto;
  width: 100%;
  font-size: clamp(12px, 2.5vw, 35px);
  font-weight: bolder;
  color: #FF730E;
  letter-spacing: 2px;
  text-shadow: 0 5px 5px rgb(0, 0, 0);
}

.textJob {
  position: relative;
  height: auto;
  width: 100%;
  font-size: clamp(12px, 2.5vw, 30px);
  font-weight: bolder;
}

.nowrap {
  display: block;
  white-space: nowrap;
}

.theme-contentContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 20%;
}

.textThemeContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-color: #FF730E;
  left: -7%;
  padding-left: 7%;
  z-index: 4;
  width: 85%;
  height: 80%;
}

.textTheme {
  position: relative;
  height: auto;
  width: auto;
  color: black;
  font-size: clamp(14px, 4vw, 45px);
}

.network-contentContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.1vw;
}

.iconNetworkContainer {
  display: flex;
  align-items: center;
  height: fit-content;
  gap: 0.6vw;
}

.iconNetwork {
  height: auto;
  width: 9%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.iconNetworkText {
  margin: 0;
  font-size: clamp(10px, 1.5vw, 22px);
  color: white;
  text-decoration: none;
}