body, html {
    height: 100%;
    margin: 0;
}

.parallax-bg {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100vw; height: 100vh;
    background: url('assets/img/field-bg-blurred.jpg') no-repeat;
    background-position: -10vw -10vh;
    background-size: 120% 120%;
    z-index: -1;
    transition: background-position 0.1s;
    margin: auto;
}

.parallax-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
    pointer-events: none;
}

.parallax-main {
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.1s;
    height: 70%;
    width: 80%;
    margin: auto;
}

.parallax-main h1 {
    color: #23343e;
    border-style: solid;
    border-color: #a8c8dd;
    border-radius: 60px;
    text-align: center;
    font-family: cursive;
    margin: auto;
    margin-top: 5vh;
    width: 20vw;
    position: center;
    background-color: rgba(205, 229, 224, 0.3)
}



.parallax-main a:hover {
    transform: scale(1.1);
}

.parallax-main a:active {
    transform: scale(0.9);
}

.button-group {
    display: flex;
    flex-direction: row;
    row-gap: 2vw;
    margin: 10vh;
    height: 10vh;
}

.button-group a {
    font-size: large;
    font-family: monospace;
    color: #23343e;
    border-style: solid;
    border-color: #a8c8dd;
    border-radius: 60px;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    position: center;
    margin: auto;
    padding: 5vh 7vh;
    background-color: rgba(205, 229, 224, 0.3);
    transition: transform 0.3s;
}

.parallax-main footer {
    font-size: large;
    font-family: monospace;
    color: #23343e;
    border-style: solid;
    border-color: #a8c8dd;
    border-radius: 60px;
    text-align: center;
    width: 15vw;
    margin: auto;
    margin-top: 20vh;
    background-color: rgba(205, 229, 224, 0.7)
}

.content {
    font-size: large;
    font-family: monospace;
    color: #23343e;
    border-style: solid;
    border-color: #a8c8dd;
    border-radius: 60px;
    text-align: center;
    margin: auto;
    margin-top: 5vh;
    width: 30vw;
    padding: 2vh;
    position: center;
    background-color: rgba(205, 229, 224, 0.3)
}

.content ul {
    display: flex;
    flex-direction: row;
    gap: 2vw;
}

.content li {
    list-style: none;
    margin: auto;
    transition: transform 0.3s;
}

.content li:hover {
    transform: scale(1.1);
}

.content li:active {
    transform: scale(0.9);
}

.content a {
    color: #23343e;
    text-decoration: none;
    text-align: center;
    background: none;
    border: none;
}

#fade-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.7s;
}
#fade-overlay.active {
  opacity: 1;
  pointer-events: all;
}


