*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"WDXL Lubrifont JP N", sans-serif;
}

body{

background:#090909;
color:white;

}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 60px;

    background:rgba(0,0,0,.45);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    transition:
        background .4s ease,
        padding .4s ease,
        box-shadow .4s ease;

    z-index:999;
}

.logo{

font-size:30px;

font-weight:bold;

letter-spacing:4px;

}

nav{

display:flex;

gap:35px;

}

nav a{

color:white;

text-decoration:none;

transition:.3s;

}

nav a:hover{

color:#888;

}

.hero{

height:100vh;

background:url("../images/hero.jpg") center center/cover;

display:flex;

justify-content:center;

align-items:center;

}

.overlay{

width:100%;

height:100%;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

}

.hero h1{

font-family:"Prosto One", sans-serif;

font-size:70px;

letter-spacing:8px;

}

section{
    padding:120px 10%;
    opacity:0;
    transform:translateY(60px);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22,.61,.36,1);
    justify-content:center;
    align-items:center;
}

section.show{
    opacity:1;
    transform:translateY(0);
}

.centered-hr {
  width: 50%;      
  margin: 0 auto;   
}

.hero p{

margin-top:20px;

font-size:22px;

}

.wdxl-lubrifont-jp-n-regular {
  font-family: "WDXL Lubrifont JP N", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.prosto-one-regular {
  font-family: "Prosto One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

section{

padding:120px 10%;

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

margin-top:40px;

}

.card{

font-size: 40px;

text-align: center;

background:#121212;

padding:40px;

border:1px solid #222;

transition:.3s;

}

.card:hover{

transform:translateY(-6px);

border-color:white;

}

footer{

padding:50px;

text-align:center;

border-top:1px solid #222;

}

.page{

padding:180px;

text-align:center;

}

.hero{
    height:100vh;
    background:
        url("../images/hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    animation:heroZoom 12s ease forwards;
}

@keyframes heroZoom{
    from{
        background-size:110%;
    }
    to{
        background-size:100%;
    }
}

.hero-content{
    animation:floatHero 7s ease-in-out infinite;
}

@keyframes floatHero{
    0%{
        transform:translateY(0px);
    }
    25%{
        transform:translateY(-5px);
    }
    50%{
        transform:translateY(-8px);
    }
    75%{
        transform:translateY(-4px);
    }
    100%{
        transform:translateY(0px);
    }
}

.hero-content{
    display:inline-block;

    padding:45px 70px;

    border-radius:30px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    transition:
        transform .6s cubic-bezier(.22,.61,.36,1),
        backdrop-filter .6s ease,
        background .6s ease,
        box-shadow .6s ease;

    box-shadow:
        0 10px 50px rgba(0,0,0,.35);
}

.hero-content:hover{

    transform:scale(1.02);

    background:rgba(255,255,255,.07);

    box-shadow:
        0 20px 70px rgba(0,0,0,.45);

}

.hero-content:active{

    transform:scale(.985);

    transition:transform .15s ease;

}

.hero-content{
    --floatY: 0px;
    --scrollY: 0px;

    transform:
        translateY(calc(var(--floatY) + var(--scrollY)));

    transition:transform .5s cubic-bezier(.22,.61,.36,1);
}

@keyframes floatHero{
    0%,100%{ --floatY:0px; }
    50%{ --floatY:-8px; }
}

select{

background:#111;

color:white;

border:1px solid #444;

padding:6px;

}