/* Base Styles */
body {
         background-color: black;
         color: white;
         font-family: 'Courier New', Courier, monospace;
         text-align: center;
         margin: 0;
         padding: 20px;
     }
     
     .container {
         padding: 20px;
     }
     
     /* Headings */
     h1, h2 {
         text-align: center;
         margin-bottom: 20px;
     }
     
     /* Paragraphs */
     p {
         margin: 10px 0;
     }
     
     /* Profile Card */
     .profile-card {
         background-color: #1c1c1c;
         border: 1px solid white;
         padding: 20px;
         margin: 20px auto;
         max-width: 500px;
         text-align: left;
         border-radius: 10px;
     }
     
     /* Links and Buttons */
     .contact-link,
     .button {
         display: block;
         background-color: white;
         color: black;
         border: 2px solid white;
         padding: 15px;
         margin: 10px auto;
         width: 80%;
         max-width: 300px;
         text-decoration: none;
         font-weight: bold;
         transition: background 0.3s;
         border-radius: 5px; /* Added for consistent button style */
     }
     
     .contact-link:hover,
     .button:hover {
         background-color: black;
         color: white;
         border: 2px solid white;
     }

     
     

      body {
        background: url('T1D .png') no-repeat center center fixed;

        background-size: 10%;
        background-color: black;
        animation: float-bg 08s linear infinite;
      }
      
      @keyframes float-bg {
        0% { background-position: -10% -10%; }  /* Start off-screen (top-left) */
        100% { background-position: 100% 100%; }  /* Move diagonally to bottom-right */
      }

      