body {
  font-family: sans-serif;
  margin: 0;
  background-color: black;
}

.section{
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.526) 1%, rgba(0,0,0,0)),
        linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0,0,0,0)),
        url("../images/background.jpg");
    background-attachment: scroll;
    background-repeat: no-repeat;
    min-height: 70vh;
    background-size: cover;
    margin-bottom: 5vh;
    position: relative;
}
.nav{
    background:
        linear-gradient(to bottom, rgb(0, 0, 0) 1%, rgba(0,0,0,0));
}
.nav img {
    display: block;
    width: 120px;
    max-width: 40%;
    height: 65%;
    margin: auto;
    padding: 20px;
    transition: 1s;
    /*filter: drop-shadow(0px 0px 6px rgb(81, 0, 255));
    background:
        linear-gradient(to bottom, rgba(21, 0, 255, 0.073) 1%, rgba(0,0,0,0)),
        linear-gradient(to top, rgba(89, 255, 0, 0.115) 1%, rgba(0,0,0,0)),
        linear-gradient(to left, rgba(255, 0, 0, 0.125) 1%, rgba(0,0,0,0));
    backdrop-filter: blur(4px);
    background-color: rgba(7, 7, 7, 0.478);
    box-shadow:  0px 0px 10px 5px rgba(7, 7, 7, 0.11);
    padding-left: 10vh;
    padding-right: 10vh;
    border-radius: 10vh;*/
}
.backgroundimage{
    height: auto;
    max-width: 800px;
    width: 90%;
    margin: auto;
    margin-top: 120px;
    text-align: left;
}
input{
    margin: auto;
    width: 50%;
    height: 5vh;
    border-radius: 25px;
    border: 0;
    border-style: solid;
    border-color: white;
    background-color: rgba(255, 255, 255, 0.148);
    padding-left: 10px;
    color: white;
    display: block;
}
input::placeholder {
  color: rgb(255, 255, 255);
  margin-left: 10px;
}
.background{
    margin-top: 25px;
    width: 250px;
    max-width: 90%;
    border-radius: 10px;
    box-shadow:  0px -10px 40px 0px rgba(4, 0, 255, 0.384);
    /*background: linear-gradient(to bottom, rgb(255, 0, 0) 45%, rgba(0,0,0,0));*/
}

.background1{
    width: 100%;
    border-radius: 10px;
    display: block;
}

.emergency-text {
  font-weight: bold;
  text-transform: uppercase;
  /* Start with a base red */
  color: #ff0000; 
  /* Hook up the animation: name, duration, timing, and loop forever */
  animation: pulse-red 0.7s infinite alternate;
}

@keyframes pulse-red {
  0% {
    color: #ff0000;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
  }
  100% {
    color: #ffcc00; /* Switches to a bright amber/yellow */
    text-shadow: 0 0 20px rgba(255, 204, 0, 1);
  }
}

.images{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-left: 30px;
    margin-right: 30px;
}
p,h1{
    color: white;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: "Audiowide", sans-serif;
}
h2{
    color: white;
    display: flex;
    justify-content: left;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-family: "Audiowide", sans-serif;
}


.image-wrapper {
  position: relative;
  display: inline-block;
}
/* Play icon */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 50px;
  color: white;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Dark overlay effect */
.image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.3s ease;
}

/* Hover effect */
.image-wrapper:hover::after {
  opacity: 1;
}

.image-wrapper:hover .play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
a {
  text-decoration: none;
}
.footer{
    background: linear-gradient(to bottom, rgba(253, 5, 5, 0.37) 1%, rgba(0,0,0,0));
    box-shadow:  0px 115px 60px 119px rgb(253, 5, 5);
}
.footer p {
    color: #777;
    font-size: 15px;
    margin-top: 15vh;
    margin-bottom: 0px;
    border-top: 1px solid rgb(255, 0, 0);
    padding-top: 15px;
}
.footer a img{
    display: block;
    width: 90px;
    height: 65%;
    max-width: 40%;
    margin: auto;
    padding: 20px;
    transition: 1s;
}
.counter{
    display: none;
    justify-content: center;
    align-items: center;
    padding-bottom: 5vh;
}








@media (max-width: 900px/*650px*/){

.images{
    gap: 20px;
}
/*.background{
    width: 250px;
}*/
.background{
    width: 45%;
    max-width: 200px;
    min-width: 120px;
}
.background h1{
    margin-top: 5px;
    font-size: 12px;

}

.backgroundimage{
    margin-top: 80px;
}

input{
    width: 80%;
}

p, h1 {
    font-size: 14px;
    line-height: 1.5;
}
.section{
    min-height: 50vh;
    background-position: center top;
}
}