/* My CSS! */

main {
    z-index: 100;
    /* ... */
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}

#enter {
    z-index: 200;
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: black;
    margin: 0;
    padding: 0;
    transition: opacity 2s;
    top: 0;
    left: 0;
    color: white;
    display: flex;
    justify-content: center;
}

#enter > p {
    margin: 0;
    margin-top: 50vh;
    margin-bottom: 50vh;
    padding: 0;
}

body {
  background-image: url(darkomori.png);
  background-repeat: repeat;
  background-size: 100vw 100vh;
  animation: scroll-bg 30s linear infinite;
  background-attachment: fixed;
  margin: auto;
  background-color: black;
  color: black;
  font-family: Franklin Gothic Medium;
  overflow: hidden;
  justify-content: center;
}
.container {
  height: 800px;
  width: 800px;
  margin: auto;
  margin-top: 10vh;
  margin-bottom: 10vh;
  text-align: center;
   border: 2px double black;
   border-radius: 35px;
   background-image: url(omoripurple.gif);
   opacity: 0.7;
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 40px;
}
    @keyframes scroll-bg {
        from {
            background-position: 0 0;
        }
        to {
            background-position: 0px -1000px;
        }
    }  
    
.enter{
margin:auto;  
border: 1px solid white;
width: 500px;
height: 200px;
top: 50%;
left: 50%;
}

  /* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: white;
}

a {
  text-decoration:none
}
  
span {
  color: white;
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  