body {
  background: url("day.png") top center no-repeat;
  background-color: #f5cddb;
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 0.9em;
}

/* mobile styles */
.wrapper {
  display: flex;
  height: 100vh;
  align-items: baseline;
  padding-top: 150px;
}

.area {
  padding: 16px;
  text-align: center;
  line-height: 1.5em;
  max-width: 700px;
  background-color: #ffffff;
  height: auto;
  min-height: 80%;
  border-radius: 20px;
}

/*all icon styles*/
#social {
  font-size: 40px;
}

.socialIcons {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

#iconContain ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#iconContain ul li {
}

.icon {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px;

  background-color: rgba(105, 0, 35, 0.2);
  border-radius: 5px;
}

.hiddenText {
  font-size: 20pt;
}

#iconContain a {
  text-decoration: none;
  color: #db487b;
  filter: invert(49%) sepia(56%) saturate(4464%) hue-rotate(312deg)
    brightness(90%) contrast(89%);
}

.contactUs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  gap: 20px;
  width: 80%;
  margin: auto;
}

.contactUs > i {
  font-size: 20px;
}

.contactUs a {
  color: #db487b;
}

.contactUs a:hover {
  color: #57001e;
}

/* desktop styles */
@media screen and (min-width: 650px) {
  .area {
    height: auto;
    min-height: auto;
    background-color: rgba(251, 239, 243, 0.5);
  }

  .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  #iconContain a {
    opacity: 0.5;
  }

  #iconContain a:hover {
    transition: all 0.4s ease-in-out;
    text-decoration: none;
    transform: scale(1.2);
    opacity: 1;
    /* background-color: #f5cddb; */
  }

  .socialIcons {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 24px;
  }

  .icon {
    padding: 8px;
    background-color: rgba(105, 0, 35, 0.2);
    border-radius: 5px;
  }

  .hiddenText {
    display: none;
  }
}

/* General Styles */
b {
  color: #db487b;
}
