:root {
  --col-blue-bg: #303540;
  --col-sand-bg: #b8ac8e;
  
  --col-blue-fg: #1a49b7;
  --col-sand-fg: #f3c042;
  
}
  body
  {
    background-color: var(--col-blue-bg);
    margin: 0;
    padding: 0;
    width:  100vw;
    height: 100vh;
    
    font-family:  'Helvetica', 'Arial', sans-serif;
    color:        #fff;
    
  }
  
  a
  {
    color: var(--col-sand-fg);
  }
  a:hover
  {
    color: #fff;
  }
  
  .bg-container
  {
    position:            absolute;
    top:                 0;
    left:                0;
    width:               100vw;
    height:              100vh;
    background-image:    url('imgs/seph-bg.webp');
    background-size:     cover;
    opacity:             50%;
    background-repeat:   no-repeat;
    background-color:    #000;
    background-position: center;
  }
  
  .main-container
  {
    position: absolute;
    top: 0;
    left: 0;
    width:  100vw;
    height: 100vh;
    scrollbar-width: thin;
  }
    
  .center-container
  {
    width:  100%;
    height: 100%;
    display: flex;
    flex-direction:  column;
    justify-content: center;
    align-items:     center;
  }
  
  .logo
  {
      min-width: 20em;
      width: 75%;
      max-width: 60em;
  }
  
  .tagline
  {
    text-align:       center;
    text-transform:   uppercase;
    margin-top:       .1em;
    letter-spacing:   .35em;
    font-size:         clamp(12px, 2vw, 24px);
    
    text-shadow: 0px 0px 4px #000, 0px 0px 4px #000;
  }
  
  .linkbox
  {
    display: flex;
    flex-direction:  row;
    justify-content: center;
    align-items:     center;
    gap:             1em;
    
    padding-bottom:   25vh;
  }
  
  .linkbox .item
  {
      
  }
  
  .navbar
  {
     width: 100vw;
     position: absolute;
     top: calc(100vh - 2em); /* -- make "bottom" to be on top of page -- */
     height 10vh;
     background-color: #000;
     
    display: flex;
    flex-direction:  row;
    justify-content: center;
    align-items:     center;
    gap:             2em;
  }
  
  .navbar a
  {
    color: #fff;
    text-decoration: none;
    
    text-transform: uppercase;
    text-shadow: 0px 0px 4px #000, 0px 0px 4px #000;
  }
  .navbar a:hover
  {
    color: var(--col-sand-fg);
  }
    
    