:root {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: rgb(0, 0, 0);
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color:rgb(225,225,200);
    --gap-above-title: 45vh;
}

body{
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: rgb(0, 0, 0);
    background: linear-gradient(  to bottom,rgb(55, 13, 0) 0%,rgb(33, 0, 0) 75%,#000 100%);
}

body.index{
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: rgb(0, 0, 0);
    background: linear-gradient(  to bottom,rgb(0, 0, 22) 0%,rgb(0, 0, 11) 75%,#000 100%);
}

#pixel-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  image-rendering: pixelated;
}

#fogCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .5;
  z-index: 0;
}

#soon {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    min-height: 100vh;
    width: 100%;
}

p.sub-top {
    grid-row: 1;
    align-self: center;
    justify-self: center;
    margin: 0;
    text-align: center;
    color: rgb(225, 225, 225);
}

p.soon {
    grid-row: 3;
    align-self: center;
    justify-self: center;
    margin: 0;
    text-align: center;
    color: rgb(225, 225, 225);
}

p.soonsub{
    margin:1.8rem 0 1.3rem 0;
    text-align: center;
}

#main-wrapper {
    margin-top: 2rem;
    text-align: center;
    width: 100%;
}

#main-title {
    grid-row: 2;          /* middle section */
    position: relative;   /* <— important for #fogCanvas */
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: rgb(22, 0, 0);
    background: linear-gradient(
        to right,
        rgb(11, 0, 0) 0%,
        rgb(22, 0, 0) 35%,
        rgb(33, 0, 0) 50%,
        rgb(22, 0, 0) 65%,
        rgb(55, 0, 0) 100%
    );
    border-bottom: 1px solid rgb(55, 0, 0);
    border-top: 1px solid rgb(12, 3, 73);
    width: 100%;
    z-index: 3;
}

.main-title {    
    position: relative;
    margin: 0;
    padding: 0;    
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 100;
    text-shadow: black -6px 4px 8px;
    line-height: 0.5;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, #350404 0%, #d52e2e 40%, #df1a1a 65%, #ba1313 85%, #d70202 100%) 1;
    z-index: 2;
}

.main-sub {    
    position: relative;
    margin: 0;
    margin-top: 1.3rem;
    padding: 0;    
    font-size: clamp(1.45rem, 5.4375vw, 2.9rem);
    font-weight: 100;
    z-index: 2;
}

.main-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

#menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;    
    align-items: center;
    gap:0.5rem;
    text-align: center;
    width: 100%;
    height: 1.5rem;
    margin-top: 0.5rem;
    background-color: rgb(22, 0, 0);
    border-bottom: 1px solid rgb(44, 0, 0);
    border-top: 1px solid rgb(88, 0, 0);
    
}

#menu.main{
    padding-bottom: 0.5rem;
    margin-bottom: 0.35rem;
}

#menu a {
    display: flex;
    flex-direction: column;
    font-size: 1.7rem;
    color: rgb(252, 242, 222);
    text-decoration: none;
    padding: 1rem 1.4rem;
    border-radius: 0 15px;
    text-shadow: black -3px 2px 4px;
    white-space: nowrap;
}

#menu a:hover{
    color: #fff;
}

@media (max-width: 750px) {
  #menu {
    visibility: hidden;
    height: 0;
  }
}

.content-card {
    padding: 1rem;
    margin: 0.75rem auto auto auto;
    border-radius: 20px;
    max-width: 1000px;
    background-color: rgb(22, 0, 0);
    border-top: 1px solid rgb(88, 0, 0);
    border-right: 1px solid rgb(55, 0, 0);
    border-bottom: 1px solid rgb(22, 0, 0);
    border-left: 1px solid rgb(22, 0, 0);
}

.content-section {
    margin: 0;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: rgb(55, 0, 0, 30%);
    background: linear-gradient(  to top,rgb(0, 11, 0) 0%,rgb(0, 55, 0) 100%);
    border-radius: 1rem;
    border-top: 1px solid rgb(0, 22, 0);
    border-right: 1px solid rgb(0, 66, 0);
    border-bottom: 1px solid rgb(0, 88, 0);
    border-left: 1px solid rgb(0, 55, 0);
}

.card-title {
    margin:0;
    padding: 0;
}

.card-sub {
    margin:0;
    padding: 0;
}