@charset "UTF-8";

<style>
body {
  background-color:#000;
  color:#fff;
  font-family:'Georgia',serif;
  background-image:url(https://i.imgur.com/nC1OUlN.png);
/* textur? subtil? */
  background-size:cover;
}

h1,h2 {
  font-family:'Playfair Display',serif;
  color:gold;
  text-shadow:1px 1px 5px #000;
  animation:glow 2s infinite alternate;
}

@keyframes glow {
  from {
    text-shadow:0 0 5px gold;
  }

  to {
    text-shadow:0 0 15px gold;
  }
}

a {
  color:gold;
  text-decoration:none;
}

a:hover {
  color:#fff;
  background:gold;
  padding:2px 5px;
  border-radius:5px;
}

img.profile-pic {
  border:3px solid gold;
  border-radius:10px;
  max-width:100%;
  margin:15px auto;
  display:block;
  box-shadow:0 0 10px gold;
  transition:transform .4s ease;
}

img.profile-pic:hover {
  transform:scale(1.05);
}

.section {
  background:rgba(0,0,0,0.7);
  border:2px solid gold;
  padding:20px;
  margin:20px 0;
  border-radius:15px;
  box-shadow:0 0 10px #111;
}