body {
  background-color: black;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  height: 100svh;
}

.socials {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 3rem;
  width: 8rem;
  padding: 0.6rem;
  border-radius: 40px;
  background-color: #3e4851;
  border: none;
  color: #ffff;
  font-weight: bolder;
  padding-right: 1.3em;
  margin: 5px;
}

.social-button:hover {
  background: rgb(62, 72, 81);
  background: linear-gradient(90deg, rgb(62, 72, 81) 0%, rgb(92, 92, 92) 98%);
  /* border-color: rgb(242, 242, 242); */
  cursor: pointer;
}

/* the logo svgs */
.social-button img {
  height: 100%;
  padding: 0.3rem;
}

.non-selectable {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  /* padding: 1rem; */
  height: 100%;
}

main img {
  color: #f63e70;
  height: 30%;
  width: auto;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  text-align: center;
}
