@import url('https://fonts.googleapis.com/css?family=Poppins');

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-image: url("bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


.center {
  margin: 0 auto;
  text-align: center;
  margin-top: 80px;
}

.bio-text {
  font-size: 16px;
  animation: up 2s;
  font-weight: 500;
  color: #f1f1f1bd;
  margin-bottom: 15px;
}

.username {
  animation: up 2s;
  font-size: 24px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.social-icons {
  font-size: 28px;
  transition: 0.2s ease-in-out;
  padding: 0 2px;
}

.social-icons:hover {
  transform: scale(1.15);
}


.pfp-image {
  animation: down 2s;
  border-radius: 100%;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 150px;
  max-width: 150px;
  height: 150px;
}

.container {
  width: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-width: 0.5px;
  border-color: rgb(43, 43, 43);
  border-style: solid;
}

.socials {
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
  display: inline-block;
  padding: 7px;
  padding-top:9px;
  border-radius: 10px;
  border-width: 0.5px;
  border-color: rgb(59, 59, 59);
  border-style: solid;
}

.blur {
  background: rgba(35, 37, 36, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -moz-backdrop-filter: blur(12px);
  -ms-backdrop-filter: blur(12px);
  margin: auto;
  padding: 30px 0;
  border-radius: 35px;
  -webkit-animation: fadein 2s;
  -moz-animation: fadein 2s;
  -ms-animation: fadein 2s;
  -o-animation: fadein 2s;
  animation: fadein 2s;
  -webkit-box-shadow: 0 0 50px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 50px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 50px -5px rgba(0, 0, 0, 0.75);
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.center,
.container,
.pfp-image,
.username,
.socials {
  animation: fadein 2s;
}