:root {
  --accent-color-faded: #ab1e489c; /* your accent color */
  --accent-color-light: #e87799b5; 
}
body,
html {
    margin: 0;
}
a {
    text-decoration: unset;
}
#fourOfour {
    display: flex;
    align-content: center;
    background-color: #111111;
    font-size: 2vw;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: white;
    flex-direction: column;
    align-items: center;
    text-align:center;
}
#content {
    z-index: 1;
    position: relative;
    overflow: hidden;
    height: 100vh;
    /* full viewport height */
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#background {
    z-index: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-color: #111111;
}

.heading{
    z-index: 2;
    font-size: 5vw;
    font-weight: 500;
    font-family: "Jost", sans-serif;
}

#landing-video {
    /*opacity:0.8;*/
    /* filter:blur(3px);*/
    border: 4px solid #cfcfcf1f;
    width: auto;
    height: 75vh;
}

#changer {
    display: inline-block;
    background-color: transparent;
    padding: 0 2px;
    border-radius: 3px;
}

.highlight {
    background-color: var(--accent-color-faded) !important;
    /* selection blue */
    color: white;
}
#main_logo {
    z-index: 100;
    top: 32px;
    position: fixed;
    opacity: 0.8;
    background-repeat: no-repeat;
    width: 185px;
    height: 99px;
    background-size: 100%;
    background-image: url(images/logo.svg);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
#main_logo:hover {
    transform:scale(1.04);
   opacity: 1;
}
#main_logo a {
    width:100%;
    height:100%;
    display:flex;
}
.panel {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
      z-index: 1;
}

.panel.inactive-up {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.panel.inactive-down {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
}
.pagination-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    position: fixed;
    bottom: 45px;
    width: 100%;
    z-index: 100;
    flex-direction: column;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
.dot-group{
    width: 51px;
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}
.pagination-expl{
    color: rgb(255 255 255 / 54%);
    font-weight: 400;
    font-size: 1.2em;
    font-family: "Jost", sans-serif;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.178);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #b0b3b8;
}

