*{
    font-family: Helvetica, Arial, sans-serif;
}

body{
    position: relative;
    margin: 0;
    padding: 0;
    background-color: black;
    box-sizing: content-box;
    height: 5000px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

body::-webkit-scrollbar {
    display: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a {
    color: white;
    text-decoration: none;
font-family: houschka-pro,
sans-serif;

font-weight: 500;

font-style: normal;
}

.expand-width{
    width: 100%;
}
.expand-height{
    height: 100%;
}
.expand-width-height{
    width: 100%;
    height: 100%;
}
.expand-screen {
    width: 100%;
    height: 100vh;
}

.center-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.center-content-vertical {
    display: flex;
    align-items: center;
}
.center-content-horizontal{
    display: flex;
    justify-content: center;
}

.center-text{
    text-align: center;
}

.flex-center-space-between{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.flex-center-space-around{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.flex-center-space-evenly {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

/* CUSTOM CLASSES */
nav{
    width: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    padding: 20px;
        background: black;
        background: linear-gradient(150deg, rgba(0, 0, 0, 0.1) 0%, rgba(121, 121, 121, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.nav-text-logo-anchor{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-text-logo{
    font-family: ff-cocon-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 21;
    margin: 0;
    padding: 0;
}

.nav-options{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-option{
    margin: 0 40px;
}

.nav-option:hover .nav-underline{
    width: 100%;
    opacity: 1;
    margin: 0 0;
    bottom: auto;
    transition: width 0.4s, margin 0.4s;
}

.nav-option:not(:hover) .nav-underline {
    width: 0%;
    opacity: 0;
    margin: 0 50%;
    transform:translateY(7px);
    transition: opacity 0.4s, transform 0.4s, width 0.4s, margin 0.4s;
}

.nav-option a{
    vertical-align: middle;
}

.nav-underline {
    position: relative;
    position: relative;
    width: 0;
    opacity: 0;
    height: 2px;
    margin: 0 50%;
    border-radius: 3px;
    background-color: white;

    /* transition: opacity 0.4s; */
}

.home-background{
    position: absolute;
    z-index: -10;
    background: black;
    overflow:hidden;
}

#background-content{
    width: 100%;
    height: 100%;
}

.background-video-parent{
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  overflow: hidden;
  filter: blur(10px);
}

.background-video{
    overflow: hidden;
    /* min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto; */
}

.frosted-background{
    position: fixed;
    background: black;
    background: linear-gradient(150deg, rgba(0, 0, 0, 0) 0%, rgba(121, 121, 121, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
}

.blurred-background{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.video-background-transition{
    position: fixed;
    bottom: -200vh;
    width: 100%;
    height: 200vh;
    background-color: black;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 50%, rgba(0, 0, 0, 1) 100%);

}

.content-wrapper{
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.title-content{
    height: 1vh;
}

.title-message{
    margin-top: 25vh;
    margin-bottom: 0;
    font-size: 100px;
    text-align: end;
    color: rgba(255, 255, 255, 0.3);
}

.logo-main{
    max-width: 500px;
    max-height: 500px;
    width: 100%;
    height: 100%;
    margin-top: 25vh;
    animation: logo-idle 5s ease-in-out 0s infinite alternate-reverse forwards;
}

/* KEYFRAME ANIMATIONS */
@keyframes logo-idle {
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}