/* Body Styles */

body {
    color: #0fff00; /* Light green text */
    font-family: monospace; /* Monospaced font for a digital feel */
    margin: 0;
    padding: 0;
    background: linear-gradient(#000 0%, #222 50%, #000 100%);
  }
  
  .logo {
    display: flex; /* Arrange elements horizontally */
    justify-content: space-between; /* Add space between elements */
    font-family: monospace; /* Monospaced font for a techy feel */
    font-size: 3em; /* Increase font size */
    color: #fff; /* White text */
    text-shadow: 0 0 5px #0fff00; /* Green text shadow */
  }
  
  .paper {
    transform: skewX(-10deg); /* Slant "Paper" to the left */
  }
  
  .cutz {
    letter-spacing: 2px; /* Add spacing between letters in "Cutz" */
    text-transform: uppercase; /* Make "Cutz" uppercase */
  }
  
  /* Links */
  a {
    color: #fff; /* White links */
    text-decoration: none; /* Remove underline */
  }
  
  a:hover {
    color: #0fff00; /* Light green hover color */
  }
  
  /* Headings */
  h1, h2, h3 {
    font-size: 2em; /* Increase heading size */
    margin-bottom: 1em;
    text-align: center;
    text-shadow: 0 0 5px #0fff00, 1px 1px 2px #000;
    animation: glow 2s ease-in-out infinite alternate;
  }

  @keyframes glow {
    from { text-shadow: 0 0 0px #0fff00; }
    to { text-shadow: 0 0 5px #0fff00; }
  }
  
  /* Content Container */
  .container {
    width: 80%;
    max-width: 1000px;
    margin: 2em auto; /* Center the content horizontally */
    padding: 2em;
    border: 2px solid #0fff00; /* Light green border */
    border-radius: 5px; /* Rounded corners */
  }
  .center {
    text-align: center;
  }

  .bg-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #0fff00;
    animation: moveLine 5s linear infinite;
  }
  
  @keyframes moveLine {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
  }

  /* Light Lines */
  .light-line {
    height: 1px;
    background-color: #0fff00;
    margin: 1em 0; /* Add space above and below lines */
  }
  
  /* Buttons */
  button {
    background-color: #0fff00;
    color: #000;
    border: 2px solid #0fff00;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
  }
  
  button:hover {
    color: #0fff00;
    background-color: #000;
    animation: buttonHover 0.5s ease-in-out;
    border-color: #fff; /* Change border color on hover */
  }
  
  @keyframes buttonHover {
    from { transform: scale(1); }
    to { transform: scale(1.1); } /* Slight scale up on hover */
  }
  