/* styles.css */

/* Global reset and box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #9DC3C2;
  }
  
  /* Links */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Common button styles */
  button {
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    opacity: 0.8;
  }

  .apple-logo {
    border-radius: 12px;
  }

  .footer-text {
    text-align: center;
    padding:30px;
    margin: auto;
  }