*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

overflow:hidden;

height:100vh;

}

.overlay{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.55);

backdrop-filter:blur(2px);

}

.landing{

height:100vh;

display:flex;

justify-content:center;

align-items:center;

position:relative;

z-index:10;

}

.glass{

width:700px;

max-width:95%;

padding:60px;

border-radius:25px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(15px);

text-align:center;

box-shadow:0 20px 60px rgba(0,0,0,.4);

animation:fade 1.3s;

}

.love{

font-size:70px;

margin-bottom:20px;

animation:pulse 2s infinite;

}

h1{

font-size:55px;

color:#fff;

margin-bottom:20px;

}

p{

font-size:20px;

line-height:35px;

color:#fff;

margin-bottom:40px;

}

button{

background:linear-gradient(

45deg,

var(--primary),

var(--secondary)

);

border:none;

padding:18px 55px;

border-radius:50px;

color:#fff;

font-size:20px;

cursor:pointer;

transition:.3s;

}

button:hover{

transform:translateY(-5px);

box-shadow:0 15px 30px rgba(0,0,0,.3);

}

@keyframes pulse{

50%{

transform:scale(1.15);

}

}

@keyframes fade{

from{

opacity:0;

transform:translateY(80px);

}

to{

opacity:1;

transform:translateY(0);

}

}