
@keyframes backg {
  0% {filter:brightness(0.5); filter:contrast(1);}
  100% {filter:brightness(2.5); filter:contrast(1.5)}
}


body {
  color: black;
  margin: 0;
  padding: 0;
  font-family: Verdana;
  overflow: hidden;
}
body::before{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(blurbackground1.png);
  filter:contrast(1);
  animation: backg 7s ease-in-out 0s infinite alternate;
}

article {
  background-image: url(stonetile.jpg);
  height : 10%;
  margin-left: 20px;
  margin-right : 20px;
  border-radius: 200px;
}

.flex-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.navi {
border: outset;
aspect-ratio: 1;
height : 10%;
width : 10%;
margin-left : 10px;
margin-right: 10px;
margin-top: 5px;
margin-bottom: 5px;
box-sizing: border-box;
transition: 2s ease-out;
filter: contrast(1);
filter: saturate(1);
}

.navi:hover {
  transition: 1ms linear;
 filter: contrast(100);
 filter: saturate(100);
}

.titleSec{
  justify-content: center;
}

.title{
  display: block;
  margin:auto;
  width:60%;
}

@keyframes scroll {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-100%);
            }
        }
        
@keyframes scrollfast {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(-100%);
            }
        }
        
footer {
  display: flex;
  flex-direction: row;
  position: fixed;
  width: 100%;
  bottom: 0;
  height: auto;
  
}

.cityimage {
  animation: scroll 20s linear infinite;
  margin: 0;
  object-fit: cover;
}
.sign{
  z-index: 0;
  overflow: hidden;
  min-height: 100vh;
  filter: contrast(2);
}
.singimg{
  position: absolute;
  overflow: hidden;
  filter: contrast(2);
  left: 100px;
  bottom: 0px;
  width: 600px; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
  z-index: -1;
  object-fit: contain;
}
.signimg2{
  z-index: -1;
  position: absolute;
  filter: contrast(2);
  width: 800px; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
  bottom: -350px;
  right: 0px;
}


