@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');

* {
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('../icons/red.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
  text-align: center;
  padding-top: 80px;
  cursor: url('../icons/cursor.cur') 16 16, auto;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

canvas {
  background: transparent !important;
}


#header {
  position: fixed;
  top: 6.5px;
  left: 50%;
  backdrop-filter: blur(3px);
  background-color: rgba(29, 29, 29, 0.7);
  border: 0px solid #81bb92;
  transform: translateX(-50%);
  transition: all ease-in 0.4s;
  width: 30%;
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  overflow: clip;
  color: white;
  padding: 7px 16px;
  z-index: 9999;
  border-radius: 20px;
}

.headericons {
  width: 35px;
  height: 35px;
  border-radius: 15px;
  transition: transform .2s ease, border .2s ease;
  border: 5px solid transparent;
}

.headericons:hover {
  border: 5px solid transparent;
  transform: scale(1.15);
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.grid .card {
  width: 180px;
  height: 180px;
  border-radius: 15px;
  border: 5px solid transparent;
  transition: ease .2s;
  position: relative;
}

.grid .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: ease .2s;
  border: 5px solid transparent;
}

.grid .card:hover img {
  transform: scale(1.2);
  border: 5px solid rgb(255, 255, 255);
  z-index: 10;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.modal-content {
  width: 90%;
  height: 90%;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
}

.form__input {
  width: 90vw;
  max-width: 900px; 
  padding: 14px 22px; 
  margin: 10px auto;
  display: block;
  font-size: 20px;
  color: var(--text-white);
  background-color: var(--primary-bg);
  border: 2px solid var(--accent-dark);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-family: notitle;
  text-align: center;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.form__input::placeholder {
  color: var(--text-gray);
  font-family: notitle;
  font-size: 18px;
}

.form__input:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 10px var(--accent-dark), 0 0 20px var(--accent-dark);
}
