body {
  background-color: rgb(61, 61, 61);
  width: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  margin-bottom: -13rem;
  margin-left: auto;
  margin-right: auto;
  width: 30rem; /* Adjust the width */
  height: auto; /* Maintain aspect ratio */
}

.um-section {
  margin: auto;
}

h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4em;
  color: rgb(255, 255, 255);
  text-align: center;
}

h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  color: rgb(255, 255, 255);
  margin-top: -3rem;
  margin-bottom: 5rem;
}

p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  color: rgb(255, 255, 255);
  text-align: center;
}

a {
  color: rgba(0, 195, 255, 0.877);
}

/*social icons*/

.card {
  display: flex;
  align-items: center;
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  gap: 20px;
  margin: auto;
  margin-top: 5rem;
}

/* for all social containers*/
.socialContainer {
  width: 52px;
  height: 52px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
}
/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
}
/* twitter*/
.containerTwo:hover {
  background-color: #00acee;
  transition-duration: 0.3s;
}
/* linkdin*/
.containerThree:hover {
  background-color: #0072b1;
  transition-duration: 0.3s;
}
/* Whatsapp*/
.containerFour:hover {
  background-color: #128c7e;
  transition-duration: 0.3s;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
