body {
  margin: 0;
  font-family: Verdana, sans-serif;
  background: linear-gradient(#ffe6f2, #fff6fb);
  color: #7a2e4d;
}

/* soft top strip */
.topbar {
  height: 8px;
  background: linear-gradient(to right, #ff9ecf, #ffd1ea, #ffb6d9);
}

/* header */
.header {
  height: 300px;
  background-image: url(https://i.pinimg.com/1200x/41/b4/7f/41b47f76e600fb7e72efa0fb42ef483b.jpg);
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid #ffb6d9;
}

/* NAV */
.image-marquee {
  overflow: hidden;
  width: 100%;
}

.track {
  display: flex;
  width: max-content;
  animation: scroll 45s linear infinite;
}

.track img {
  width: 150px;
  height: auto;
  margin-right: 10px;
  flex-shrink: 0;
}

.nav a {
  position:relative;
  top:-10px;
  margin: 10px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-family:"Meddon",cursive;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* layout */
.layout {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 20px;
  background-image:url(https://i.pinimg.com/736x/1f/4c/0b/1f4c0b4a7688eba43597a20a5096946f.jpg);
  background-size: cover;
  background-position: center;
}

/* columns */
.left, .right {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.center {
  width: 450px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* soft pastel boxes */
.box {
  border: 2px solid #ffd1ea;
  border-radius: 16px;
  box-shadow: 0 0 12px #ffe0ef;
  padding: 10px;
}

/* different box sizes */
.profile {
 width: 220px;
  height: 220px;
  padding: 10px;
  border: 2px solid #ff9ecf;
  border-radius: 12px;
  background: white;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  box-sizing: border-box;
}

.elena {
 max-width: 100%;
  max-height: 100%;
  display: block;
}

.mini {
  height: 90px;
  background: linear-gradient(#fff, #ffe6f2);
}

.big {
  height: 160px;
  background: linear-gradient(#fff, #ffe6f2);
}

/* footer */
.footer {
  height: 60px;
  background: #ffe0ef;
  border-top: 2px solid #ffb6d9;
  margin-top: 20px;
}