/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }


  body {
    margin: 0;
    padding: 0;
    font-family: 'HelvetiHand', sans-serif;
    background: url('assets/arcadia-bay.png') no-repeat center center fixed;
    background-size: cover;
    color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* ensures full screen height */
    overflow: hidden; /* removes scroll if not needed */
  }
  
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* Prevent scrolling */
  }
  
  body {
    font-family: 'Helveti Hand' sans-serif;
    background: url('arcadia-bay.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f4f4f4;
    line-height: 1.6;
    padding: 40px;
    backdrop-filter: blur(3px);
    min-height: 100vh;
    text-align: center;
  }
  
  .about-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    max-width: 720px;
    width: 90%;
    margin-left: 5%;
  }  
  
  .about-content p {
    font-size: 1.25rem; /* bigger body text */
    color: #eee;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .back-button {
    font-size: 1.25rem;
    padding: 14px 28px;
    margin-top: 10%;
  }
  
  .back-button:hover {
    transform: scale(1.05);
    background-color: #8996ff;
  }
  
  body {
    background: url('assets/arcadia-bay.png') no-repeat center center fixed;
    background-size: cover;
    backdrop-filter: blur(2px);
  }

  body {
    font-family: 'HelvetiHand', sans-serif;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3, h4, p {
    color: #f5f5f5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  
  
