*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

background:#080808;
font-family:'Oswald',sans-serif;
color:white;
overflow-x:hidden;

}

#particles{

position:fixed;
width:100%;
height:100%;
background:
radial-gradient(circle at center,#202020 0%,#090909 70%);
z-index:-3;

}

header{

height:100vh;

display:flex;
flex-direction:column;

justify-content:center;
align-items:center;

text-align:center;

padding:20px;

}

.logo{

width:450px;
max-width:90%;

animation:float 5s ease-in-out infinite;

filter:

drop-shadow(0 0 20px rgba(255,110,0,.6));

}

h1{

font-size:70px;
letter-spacing:4px;
margin-top:30px;

text-shadow:

0 0 25px rgba(255,120,0,.4);

}

p{

font-size:22px;

color:#bbbbbb;

line-height:1.6;

margin-top:20px;

}

.discord{

margin-top:50px;

padding:18px 50px;

font-size:25px;

text-decoration:none;

color:white;

background:#5865F2;

border-radius:50px;

transition:.35s;

box-shadow:

0 0 30px rgba(88,101,242,.5);

}

.discord:hover{

transform:translateY(-8px);

box-shadow:

0 0 50px rgba(88,101,242,1);

}

section{

max-width:1200px;

margin:auto;

padding:120px 40px;

display:flex;

justify-content:center;

gap:30px;

flex-wrap:wrap;

}

.card{

background:#111;

padding:40px;

border-radius:20px;

width:330px;

transition:.4s;

border:1px solid #333;

}

.card:hover{

transform:translateY(-15px);

border-color:#ff7300;

box-shadow:

0 0 30px rgba(255,115,0,.3);

}

.card h3{

font-size:32px;

margin-bottom:20px;

color:#ff7300;

}

footer{

padding:50px;

text-align:center;

color:#777;

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0px);

}

}