@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
body {
    background: #ece9e6;
    background: -webkit-linear-gradient(#ece9e6, #ffffff);
    background: linear-gradient(#ece9e6, #ffffff);
    color: #111;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 5vh;
}

.profile-picture {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1%;
    height: auto;
    max-width: 200px;
    mix-blend-mode: color-dodge;
}
    
.profile {
    text-align: center;
    font-size: 15px;
    letter-spacing: 2px;   
    margin: 0;
}

a.profile:hover{
    color: #000;
}

.name{
    padding: 30 30 7 30px;
    background: transparent;
    color: #fff;
}

.title {
    padding: 7 30 30 30px;
    font-weight: normal;
}

.header{
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    max-width: 90vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 105%;
}

.links {
    background: #ece9e6;
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid black;
    border-width: 2px;
    width: 290px;
    max-width: 60vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    font-weight: 500;
}

a {
    color: #111;
    transition: color 0.5s;
}

a.links:hover {
    color: #fff;
    background: #111;
}

a i:hover{
    color: #fbdd3b;
}

.bottom-text {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    font-weight: bold;
}
@-webkit-keyframes gradient_transition {
  0% {
    top: 0;
    left: 0;
  }
  50% {
    top: -200%;
    left: -200%;
  }
  100% {
    top: 0;
    left: 0;
  }
}
@-moz-keyframes gradient_transition {
  0% {
    top: 0;
    left: 0;
  }
  50% {
    top: -200%;
    left: -200%;
  }
  100% {
    top: 0;
    left: 0;
  }
}
@-o-keyframes gradient_transition {
  0% {
    top: 0;
    left: 0;
  }
  50% {
    top: -200%;
    left: -200%;
  }
  100% {
    top: 0;
    left: 0;
  }
}
@keyframes gradient_transition {
  0% {
    top: 0;
    left: 0;
  }
  50% {
    top: -200%;
    left: -200%;
  }
  100% {
    top: 0;
    left: 0;
  }
}
body {
  color: white;
  font-family: "Inter";
  font-weight: lighter;
  overflow: hidden;
}
body::before, body::after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
body::after {
  content: "";
  width: 400%;
  height: 400%;
  opacity: 0.8;
  background: -moz-linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  background: -webkit-linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  -webkit-animation: gradient_transition 15s ease infinite;
  -moz-animation: gradient_transition 15s ease infinite;
  -o-animation: gradient_transition 15s ease infinite;
  animation: gradient_transition 15s ease infinite;
}