
@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{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.song{
  width:20%;
}
.title{
  width:60%;
}
.links{
  display: grid;
  grid-template-columns: repeat(2, min-content);
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding-top: 20px;
  z-index: 2;
}

.linkButton{
  width: 120px;
  height: auto;
  aspect-ratio: 1;
}

@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: 30%;
  pointer-events: none;
  
}

.cityimage {
  animation: scroll 20s linear infinite;
  margin: 0;
  object-fit: cover;
  pointer-events: none;
}
.sign{
  z-index: 0;
  overflow: hidden;
  min-height: 100vh;
  filter: contrast(2);
}
.singimg{
  position: fixed;
  overflow: hidden;
  filter: contrast(2);
  left: -3px;
  bottom: 0%;
  width: 46%;       /* On mobile, it can take up 40% of the width */
  max-width: 337px;
  height: auto; /* Maintain aspect ratio */
  z-index: -1;
  object-fit: contain;
}
.signimg2{
  z-index: -1;
  position: fixed;
  filter: contrast(2);
  width: 99%;       /* On mobile, it can take up 40% of the width */
  max-width: 721px;
  height: auto; /* Maintain aspect ratio */
  bottom: 5px;
  right: -108px;
  transform: translateY(45%);
  object-fit: contain;
}


