@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body {
    background:var(--bg-global);
    margin:0;
    padding: 0;
    height: 100dvh;
    width: 100dvw;
    font-family: "Inter", "Hanken Grotesk", Arial, Helvetica, sans-serif;
    --nav-height:70px;
    --landing-width:600px;
    position: fixed;
    top:0;
    left: 0;
    --accent:rgb(35, 28, 168);
}
.noselect {
    user-select: none;
    -webkit-user-select: none;
}
.nav {
    display: flex;
    position: fixed;
    top:0;
    left: calc(50dvw - ((var(--landing-width))/2));
    width: calc(var(--landing-width) - 30px);
    max-width: calc(100dvw - 30px);
    padding: 0 15px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
}
.nav .logo {
    display: flex !important;
    align-items: center;
}
.nav .logo::before {
    content: " ";
    width: 50px;
    height: 50px;
    background-image: url(/static/media/icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    margin-right: 10px;
    z-index: 999;
}
.nav .logo::after {
    content: "BiggerFish";
    letter-spacing: 0px;
    font-family: "Givonic";
    font-size: 25px;
    color:rgb(20,20,20)
}
.landing {
    height: 100dvh;
    width: var(--landing-width);
    max-width: calc(100dvw - 15px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}
.landing .headline {
    font-family: "Givonic", "Hanken Grotesk", Arial, Helvetica, sans-serif;
    font-weight: 600;
    margin:0;
    margin-top:calc(var(--nav-height) + 20dvh);
    text-align: center;
    font-size: 3rem;
}
.landing .subtitle {
    color:rgb(50,50,50);
    text-align: center;
}
.landing .button-row {
    margin-top:20px;
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
}
.landing button.main {
    background:var(--accent);
    font-family: "Cera Round","Hanken Grotesk","Inter", Arial, Helvetica, sans-serif;
    color:white;
    border-radius: 7px;
    height: fit-content;
    width: fit-content;
    padding: 10px 15px;
    font-size: 19px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border:none;
}
.landing button.main:hover {
    filter: brightness(1.1);
}
.landing button.main svg {
    height: 20px;
    margin-right: 4px;
    stroke: white;
}
.landing .waves-animation {
    position: fixed;
    bottom:-10px;
    left: 0;
    width: 100dvw;
    z-index: -1;
}
.LightWaves {
  animation: lightwaves 2s infinite;
  position: relative;
}

@keyframes lightwaves {
    0%,100% { transform: translate(0,0); }
    25%     { transform: translate(5px,5px); transform: scale(1.05); }
    50%     { transform: translate(25px, 5px); }
    75%     { transform: translate(12px,10px); transform: scale(1.05); }
}

.DarkWaves {
  animation: darkwaves 3.8s infinite;
}

@keyframes darkwaves {
    0%,100% { transform: translate(0,0); }
    25%     { transform: translate(25px, 5px); transform: scale(1.05); }
    50%     { transform: translate(12px,10px); }
    75%     { transform: translate(5px,5px); }
}

.WhiteWaves {
  animation: whitewaves 4s alternate ease infinite;
}

@keyframes whitewaves {
    0% { transform: translate(0,25px); }
    100%     { transform: translate(25px,35px); }
}

.dashboard-btn {
    background:transparent;
    border:none;
    font-family: "Cera Round","Hanken Grotesk","Inter", Arial, Helvetica, sans-serif;
    color:black;
    border-radius: 7px;
    height: fit-content;
    width: fit-content;
    padding: 7px 10px;
    font-size: 17px;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: auto;
    height: fit-content;
}
.dashboard-btn::before {
    content: "Zum Dashboard";
}
.dashboard-btn:hover {
    text-decoration: underline;
}