/*
I apologise in advance for my amateurish code. Hey, a heavy reliance on W3Schools is better than vibe coding or paying for Squarespace or something.
*/

body {
  background: black;
}
h1 {
  color: white;
}
p {
  color: white;
}

a:link {
  color: lightpink;
  background-color: transparent;
  text-decoration: none;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s;
  padding: 6px 9px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-style: italic;
  color: #00ff00;
  background: transparent;
  border-radius: 8px;
  border: 3px dotted #00ff00;
  min-width: 140px;
  min-height: 44px;
}