body {
  margin: 0;
  padding: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(521071.jpg);
  background-size: cover;
  background-position: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: 100vh;
  padding: 20px;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.logo {
  width: 96px;
  height: 96px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 20px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul li {
  margin: 0 15px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  position: relative;
}

nav ul li::after {
  content: '';
  height: 3px;
  width: 0;
  background: pink;
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: width 0.5s;
}

nav ul li:hover::after {
  width: 100%;
  left: 0;
}

.box {
  width: 300px;
  height: 300px;
  background-color: transparent;
  border-radius: 10px;
  margin: 10px;
  padding: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 10px 2px pink;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.box:hover {
  background-color: rgba(255, 192, 203, 0.3);
  transform: scale(1.05);
  box-shadow: 0 0 20px 4px pink;
}

.box h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.box p {
  font-size: 18px;
  line-height: 1.4;
  margin-top: auto;
}
