@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&family=Signika+Negative:wght@400;700&display=swap");

* {
  margin: 0 auto;
}

a:hover{
  border: 4px solid white;
  box-sizing: border-box;
  border-radius: 8px;
}

body {
  background-color: #141414;
  font-family: "Roboto", sans-serif;
  font-family: "Signika Negative", sans-serif;
  animation: fadein 2s;
  -moz-animation: fadein 2s; /* Firefox */
  -webkit-animation: fadein 2s; /* Safari and Chrome */
  -o-animation: fadein 2s; /* Opera */
}

#shadow {
  height: 65px;
  width: 100%;
  background: rgb(6, 6, 6);
  background: linear-gradient(
    180deg,
    rgba(6, 6, 6, 1) 0%,
    rgba(20, 20, 20, 1) 100%
  );
}

h1 {
  color: white;
  font-weight: 300;
  font-size: 55px;
  text-align: center;
  margin-top: 165px;
}

#users {
  top: 50%;
  left: 47.4%;
  transform: translate(-50%, -50%);
  display: flex;
  position: absolute;
  height: 150px;
  width: 825px;
}

a {
  height: 150px;
  width: 150px;
  margin: 15px;
}

img {
  height: 150px;
  width: 150px;
}

.userName {
  color: #7f7f7f;
  text-align: center;
}

a:link {
  text-decoration: underline;
}
a:link {
  text-decoration: none;
}

#manageProfile {
  margin-top: 20%;
  position: relative;
  color: #868686;
  text-align: center;
  border: 1px solid #636363;
  line-height: 2;
  height: 35px;
  width: 150px;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  /* Firefox */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  /* Safari and Chrome */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  /* Opera */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
