
:root {
  --text: rgb(36, 25, 102);
  --base: rgb(18, 3, 32);
  --accent: rgb(90, 42, 80);
  --secondary:rgb(45, 68, 47);
  --green:rgb(59, 163, 59);



}/* General Styles */
*{
    scrollbar-width: none;
}
body {
    background: linear-gradient(135deg, rgb(0, 0, 8), rgb(141, 141, 189)); /* Gen 4 inspired colors */
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    padding: 0px;
    overflow-x: hidden;
    color: beige;
    scrollbar-color: none;
}
section{
  height: 100vh;
  width: 100vw;
  background-color: rgb(15, 15, 22);
  display: flex;
  justify-content: center;
align-items: center;
flex-direction: column;

}
.con{
  width: 300px;


}
img{
  margin: 8px;
}
a {
    color: #ffcc00;
    text-decoration: none;
    
}
a:hover {
    text-decoration: underline;
    color: #ff4800;
}
footer {
  width: 100vw;
  padding: 20px 0;
  background-color: rgb(90, 90, 38);
  color: var(--text);
  text-align: center;
  border-top: solid 4px var(--accent);
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -5px 20px 5px var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 18px;
  display: flex;
  flex-direction: row;
}

/* Spin animation */
@keyframes spinny {
    0% {
      transform: translateX(70%);
    }
    
    100% {
      transform: translateX(-200%);
    }
  }
  @keyframes spinny2 {
    0% {
      transform: translateX(-100%);
    }
    
    100% {
      transform: translateX(300%);
    }
  }
  /* stamp css */
  .stamps {
    gap: 10px;
    position: relative;
    width: 100vw;
    overflow: hidden;
  }
  
  .stamps span {
    display: inline-block;
    white-space: nowrap;
    animation: spinny 15s linear infinite;
  }
  

  .stamps img {
    width: auto;
    height: 31px;
    margin-right: 1px;
    transition: transform 0.3s ease-in-out;
    position: relative;
  }
  .stamps2 {
    gap: 10px;
    position: relative;
    width: 100vw;
    overflow: hidden;
  }
  
  .stamps2 span {
    display: inline-block;
    white-space: nowrap;
    animation: spinny2 30s linear infinite;
  }
  

  .stamps2 img {
    width: auto;
    height: 31px;
    margin-right: 1px;
    transition: transform 0.3s ease-in-out;
    position: relative;
  }
  
  

