body {
  margin: 0;
  font-family: Arial;
  background: url("zebra.jpg");
  background-size: cover;
  color: white;
}

/* CONTAINER */
.container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  padding: 30px;
  position: relative;
  z-index: 10;
}

/* BOX */
.box {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid hotpink;
  padding: 15px;
  box-shadow: 0 0 10px hotpink;
}

/* PROFILE */
.profile {
  grid-row: span 2;
}

/* AVATAR */
.avatar {
  width: 100%;
  border: 2px solid hotpink;
}

/* TEXT */
h2 {
  color: hotpink;
}

.online {
  color: lime;
}

.mood {
  margin-top: 10px;
}

/* IMAGES AUTOUR */
.floating-images img {
  position: fixed;
  width: 90px;
  z-index: 1;

  padding: 5px;
  background: white;
  border: 2px solid hotpink;
  border-radius: 10px;

  box-shadow: 0 0 10px hotpink;

  opacity: 0.85;
  transition: 0.3s;
}

.floating-images img:hover {
  transform: scale(1.2);
  opacity: 1;
}

/* POSITIONS PROPRES */
.float1 { top: 20px; left: 20px; }
.float2 { top: 20px; right: 20px; }
.float3 { bottom: 20px; left: 20px; }
.float4 { bottom: 20px; right: 20px; }
.float5 { top: 150px; left: 30px; }
.float6 { top: 150px; right: 30px; }
.float7 { bottom: 150px; left: 40px; }
.float8 { bottom: 150px; right: 40px; }
.float9 { top: 40%; left: 10px; }
.float10 { top: 40%; right: 10px; }