* {
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Bebas Neue', cursive;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  background: red;
  height: 100%;
  background-image: url("background.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 190px;

}

.profile>img {
  width: 95px;
  height: 95px;
  border: 3px solid #fff;
  border-radius: 100%;

   margin:120px;
  margin-top:-105px;
}

.profile>p {
  font-size: 1.8em;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
 text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  text-transform: capitalize;
  text-align: center;
  margin:70px;
}

.link {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px;

}

.link>a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 24px;
  text-align: center;
  border: 3px solid #00e1f9;
  background-color: #0972d5;
  border-radius: 79px;
  margin: 15px 10px 10px 0px;
  padding: 10px;
  text-transform: uppercase;
  font-weight: 500;
}

.link>a:hover {
  background-color: rgb(155, 85, 58);
}

.footer {
  text-align: center;
}

.footer>i {
  color: white;
  font-size: 20px;
}