:root {
  /* Primary — deep navy */
  --color-primary: #0c1f45;
  --color-primary-light: #1a3566;
  --color-primary-dark: #071227;

  /* Secondary — muted steel blue, sits close on the wheel */
  --color-secondary: #3d5a80;
  --color-secondary-light: #6e89a8;

  /* Accent — warm contrast, use sparingly for CTAs */
  --color-accent: #e0a458;
  --color-accent-hover: #c98d3f;

  /* Neutrals */
  --color-bg: #f7f9fc;
  --color-surface: #ffffff;
  --color-border: #d9e0ea;
  --color-text: #101828;
  --color-text-muted: #5b6b82;

  /* Feedback */
  --color-success: #2f9e6f;
  --color-warning: #d99a2b;
  --color-error: #c0402f;
}

body{
    background-color: var(--color-bg);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#content{
    display: grid;
    position: relative;
    padding-left: 20%; 
    padding-right: 20%;
    padding-bottom: 20px;
    padding-top: 20px;
    flex: 1;
}

#opening {
    background-color: #0c1f45; 
    padding: 1%; 
    border-bottom-left-radius: 2%;
    border-bottom-right-radius: 2%;
    display: grid; 
    grid-template-columns: 1fr 1fr;
}

#opening nav {
    padding-top: 16px;
    justify-content: center;
    font-size: larger; 
    display: flex;
    gap: 24px;
    
}

#opening nav a{
    color: var(--color-secondary-light)
}

#opening nav a:hover {
    color: var(--color-secondary)
}

a {
    text-decoration: none; 
    color: white;
}

a:hover{
    color: limegreen;
}

footer{
    background-color: #0c1f45;
    position: relative;
    height: 100px;
    padding-left: 2%;
    box-sizing: border-box;
    border-top-left-radius: 2%;
    border-top-right-radius: 2%;
    display: flex;
    justify-content: center;
}

footer div{
    color: grey;
    width: 250px;
    text-align: center;
}