body {
    background: #000000;
    overflow-x: hidden;
    font-family: "Satoshi", sans-serif;
    margin: 0vw;
}
html {
    scroll-behavior: smooth;
}

.homeContent {
    position: absolute;
    top: 0;
    z-index: 1;
    height: 100vh;
}
.titlePos {
    display: flex;
    flex-direction: column;

    position: absolute;
    bottom: 7vh;
    margin-left: 2vw;
}

.storyPos {
    display: flex;
    flex-direction: row;

    position: absolute;
    top: 100vh;
    margin: 10vw;

    z-index: 1;
}

.header {
    position: sticky;

    display: flex;

    align-items: center;
    margin: 1em;

    transition-duration: 200ms;
}

.logo {
    margin-right: auto;
    width: 5%;

    transition-duration: 200ms;
}

nav {
    display: flex;
    justify-content: flex-end;

    background-color: #ff5200;
    color: #f5f5f5;
    padding: 1.5vw;
    margin-right: 2vw;

    transition-duration: 200ms;
}

.links1:first-child {
    padding-left: 2vw;
    width: 5vw;
}

.links1:last-child {
    margin-right: 10vw;
}

.links1 {
    text-decoration: none;
    color: #1e1e1e;

    font-weight: 500;

    align-self: center;

    transition-duration: 200ms;

    width: 7vw;
}

.links1:last-of-type {
    margin-right: 10vw;
}

.links1:hover {
    font-weight: 600;
    transition-duration: 200ms;
}

.links2 {
    align-self: center;

    width: 1.3vw;
    height: 1.3vw;

    padding-left: 3vw;

    transition-duration: 200ms;
}

.links2:last-child {
    margin-right: 2vw;
}

h1 {
    font-weight: 500;
    font-size: 60px;
    color: #f5f5f5;
    margin: 0px;
    margin-bottom: 5px;
}

p {
    font-weight: 400;
    font-size: 25px;
    color: #f5f5f5;
    margin: 0px;
    margin-bottom: 15px;
}

a {
    font-weight: 400;
    font-size: 15px;
    color: #f5f5f5;
    margin: 0px;
}

.button {
    background-color: #f5f5f5;
    color: #1e1e1e;
    border-radius: 50px;
    padding: 1vw;

    margin: 0px;

    margin-top: 2vw;
    margin-right: 1vw;

    transition-duration: 200ms;

    text-decoration: none;
    padding-left: 1.2vw;
    padding-right: 1.2vw;
}
.button:hover {
    background-image: linear-gradient(45deg, #c22753, #ff5200, #ffb960);
    color: #f5f5f5;
    transition-duration: 200ms;
}

.button:hover:before {
    filter: blur(2px);
}

.glassBlur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(35px);
    pointer-events: none;
}

.gradientBackground {
    position: absolute;
    bottom: 0vw;
    left: 0vw;
    width: 0vw;
    height: 0vh;
    background: linear-gradient(45deg, #c22753, #ff5200, #ff5200, #ffb960);
    transition:
        width 2s cubic-bezier(0.25, 0.01, 0.85, 0.7),
        height 2s cubic-bezier(0.25, 0.01, 0.85, 0.7);
    z-index: -1;
    filter: blur(300px);
    border-radius: 50vw;
}

.active .gradientBackground {
    width: 90vw;
    height: 90vh;

    transition:
        width 2s cubic-bezier(0, 0.79, 0.54, 0.98),
        height 2s cubic-bezier(0, 0.79, 0.54, 0.98);
}

#gradient_Text {
    cursor: default;
}
