* {
  box-sizing: border-box;
}

body {
  background-image: url("bg.webp");
  background-repeat: repeat;
  font-family: "Poppins", sans-serif;
  color: #5a4a4a;
}


.page {
  width: 1100px;
  margin: 20px auto;
  
}

/* HEADER */
.header {
  border-radius: 22px;
}


.header-img {
  max-width: 100%;
}

.subtitle {
  font-size: 14px;
}

/* GRID */
.content {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 15px;
}

.sidebar,
.main {
  gap: 18px;
}


.box {
  background: rgba(255, 255, 255, 0.65);
  padding: 14px;
  border-radius: 18px;
}


.center {
  text-align: center;
}

/* IMAGES */
.box img {
  max-width: 100%;
}

.profile-img {
  width: 150px;
}

.main-img {
  width: 100%;
}

/* LINKS */
a {
  color: #d46a8c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* LISTS */
ul {
  padding-left: 18px;
}

/* FOOTER */
.footer {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #8a6f76;
}
.hover-wrap {
  position: relative;
  overflow: hidden;
}

.hover-wrap img {
  transition: transform 0.4s ease;
}

.hover-wrap .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 192, 203, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(10px);
  pointer-events: none;
  border-radius: 18px;
}

.hover-wrap:hover img {
  transform: scale(1.05);
}

.hover-wrap:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}
body {
  background-color: white;
  background-image:
    radial-gradient(black 2px, transparent 2px);
  background-size: 24px 24px;
  font-family: "Poppins", sans-serif;
}


