/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {  
      background-color: #ffeef8;
      font-family: 'Courier New', monospace;
      color: #ff69b4;
      margin: 0;
      padding: 0;
      cursor: url(https://64.media.tumblr.com/2ee76acc3db3cbea600cf09f55a6f595/a1cf54e7c01e9ffc-dc/s75x75_c1/988eac35a2c6b085f6136608a8a442220d556efb.gifv), auto;
      opacity: 0;
      transition: opacity 1.5s ease-in;
    }

    .container {
      max-width: 600px;
      margin: 40px auto;
      background-color: #fff;
      border: 2px dashed #ffb6c1;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 0 10px #ffc0cb;
    }

    h1 {
      text-align: center;
      font-size: 2em;
      margin-bottom: 10px;
    }

    img.profile-pic {
      display: block;
      margin: 0 auto 20px;
      border-radius: 50%;
      border: 3px solid #ffb6c1;
      width: 120px;
      height: 120px;
      object-fit: cover;
    }

    p {
      font-size: 1em;
      line-height: 1.6;
      text-align: center;
    }

    a {
      color: #ff69b4;
      text-decoration: none;
      font-weight: bold;
    }

    .links {
      text-align: center;
      margin-top: 20px;
    }

    .links a {
      margin: 0 10px;
    }
 
  body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://64.media.tumblr.com/e19d803caddc60957b9c1275d2c9a816/a1cf54e7c01e9ffc-a8/s400x600/db4f83758403f6643055bc9f5082af3b07edac1e.pnj') repeat;
  animation: twinkle 10s linear infinite;
  z-index: -1;
  opacity: 0.2;
  }
  
    @keyframes twinkle {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 1000px; }
  }