*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#0f2027;
  color:white;
}

/* PARTICLES */
#particles-js{
  position:fixed;
  width:100%;
  height:100%;
  z-index:-1;
}

/* TITLE */
.title{
  text-align:center;
  margin-top:40px;
  color:#00f2fe;
}

/* CONTAINER */
.container{
  width:90%;
  max-width:800px;
  margin:auto;
  margin-top:30px;
}

/* CARD (GLASS EFFECT) */
.card{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  padding:25px;
  margin:20px 0;
  border-radius:15px;
  border:1px solid rgba(255,255,255,0.2);

  transition:0.4s;
}

/* HOVER */
.card:hover{
  transform: translateY(-10px);
  box-shadow: 0 0 25px #00f2fe;
}

/* HEADINGS */
h2{
  color:#00f2fe;
  margin-bottom:10px;
}

/* TEXT */
p{
  color:#ddd;
  margin:5px 0;
}

/* SOCIAL LINKS */
.social a{
  display:inline-block;
  margin:10px;
  padding:10px 15px;
  border-radius:8px;
  text-decoration:none;

  background: rgba(255,255,255,0.1);
  color:white;

  transition:0.3s;
}

.social a:hover{
  background:#00f2fe;
  color:black;
}

/* INPUT */
input, textarea{
  width:100%;
  padding:12px;
  margin:10px 0;
  border:none;
  border-radius:10px;

  background: rgba(255,255,255,0.2);
  color:white;
}

/* BUTTON */
button{
  width:100%;
  padding:12px;
  border:none;
  border-radius:10px;
  cursor:pointer;

  background: linear-gradient(45deg,#00f2fe,#4facfe);
  color:black;
  font-weight:600;
}

button:hover{
  transform: scale(1.05);
  box-shadow:0 0 15px #00f2fe;
}