 body {
     font-family: 'Helvetica Neue', Arial, sans-serif;
     background-color: #ffffff;
     color: #333;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     height: 100vh;
     margin: 0;
     text-align: center;
 }

 header {
     display: flex;
     align-items: center;
     justify-content: flex-start;
     width: 100%;
     padding: 20px;
     box-sizing: border-box;
 }

 .logo {
     width: 120px;
     height: auto;
 }

 main {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     flex-grow: 1;
 }

 h1 {
     font-size: 8rem;
     font-weight: 800;
     margin: 0;
     color: #000;
     line-height: 1;
 }

 p {
     font-size: 1.3rem;
     margin: 10px 0 0;
     color: #555;
 }

 .sarcastic-note {
     font-style: italic;
     color: #888;
     margin-top: 10px;
     font-size: 1.1rem;
 }

 .button {
     margin-top: 30px;
     padding: 12px 24px;
     background-color: #000;
     color: #fff;
     border: none;
     border-radius: 4px;
     font-size: 1rem;
     cursor: pointer;
     transition: background-color 0.3s;
 }

 .button:hover {
     background-color: #333;
 }