* {
  margin: 0;
  padding: 0;
}
body{
  background-color: black;
  
}

html {
  font-family: 'Abyssinica SIL', cursive;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(83, 0, 116, 0.918);
  height: 100vh;
  background-image: url(gambar/abstract-banner-background-with-red-shapes_1361-3348.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

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

.profile>img {
  width: 150px;
  height: 150px;
  border: 3px solid #222;
  border-radius: 100%;
}

.profile>p {
  font-size: 1.8em;
  font-weight: 900;
  letter-spacing: 2px;
  color: rgb(221, 167, 32);
  text-transform: capitalize;
  text-align: center;
}

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

.link>a {
  text-decoration: none;
  color: rgb(199, 227, 22);
  font-size: 22px;
  text-align: center;
  border: 2px solid rgba(225, 218, 7, 0.947);
  background-color: #020000;
  border-radius: 5px;
  margin: 5px 10px;
  padding: 10px;
  text-transform: uppercase;
  font-weight: 500;
}

.link>a:hover {
  background-color: rgb(239, 243, 14);
}

.footer {
  text-align: center;
}

.footer>i {
  color: rgb(224, 164, 24);
  font-size: 20px;
}