* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  content: none;
  background: #e3edf7;
  margin-bottom: 20px;
}

.bg-purple {
  background: black;
  color: #fff;
}

headar {
  max-width: 400px;
  margin: auto;
  gap: 10px;
  padding: 60px 0px;
}
.content {
  max-width: 400px;
  margin: auto;
  background-color: red;
}

headar img {
  width: 160px;
}

.center-items {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
}

.icon-row {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.icon {
  width: 33.33%;
  max-width: 70px;
  min-width: 44px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 40px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(15%)
    hue-rotate(334deg) brightness(106%) contrast(103%);
  cursor: pointer;
}

.icon:hover {
  opacity: 0.7;
}

footer {
  margin-top: 30px;
  font-size: 14px;
  position: absolute;
  bottom: 10px;
}

.alert {
  position: absolute;
  top: 0;
  right: calc(50% - 150px);
  width: 300px;
  display: flex;
  align-items: center;
  background-color: #333;
  color: white;
  border-radius: 5px;
  padding: 15px;
  margin-top: 20px;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease-in-out;
}

.alert.hidden {
  opacity: 0;
  visibility: hidden;
}

.alert-content {
  display: flex;
  align-items: center;
}

.alert-icon {
  background-color: #00b894;
  border-radius: 50%;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 24px;
}

.alert h4 {
  margin: 0;
  margin-bottom: 5px;
  font-size: 18px;
}

.alert p {
  margin: 0;
  font-size: 14px;
}
