html {
  height: 100%;
  width: 100%;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}
header {
  background-color: #356;
  color: #fff;
  padding: 1em;
  text-align: center;
}
main {
  padding: 2em;
}
.container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
  margin: 0;
}
.contact-info {
  margin-top: 1em;
}
a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

strong:hover{
  font-style:italic ;
}
strong.gold:hover{
  font-style:italic;
  color: gold;
}
h2.aboutme{
  text-align: center;
}

strong.cashapp:hover{
  font-style:italic ;
  color: #00D54B;
}
strong.zelle:hover{
  font-style:italic;
  color: purple;
}

h2.unavailabe{
  color: red;
  text-align: center;
}

p.aboutme{
  max-width: 800px; /* Set the maximum width */
  margin-left: auto; /* Center the block horizontally */
  margin-right: auto; /* Center the block horizontally */
  text-align: center; /* Center the text inside the block */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px; /* smaller padding = slimmer bar */
  background: #111;
}


nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
.logo {
  height: 50px; /* THIS controls how big your logo is */
  width: auto;
}
.cta-section {
  background: #111;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
}
.section {
  padding: 60px 40px;
  max-width: 1100px;
  margin: auto;
}
.cta {
  background: #00c2ff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

