
/*
* Layout
*/

html, body {
    position: relative;
    padding: 0;
    margin: 0;
    overflow: hidden;

    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #333 ), color-stop(100%,black));
    background: -webkit-radial-gradient(center, ellipse cover, #333 0%, black 100%);
    transition: 600ms all;
    height: 100%;
    width: 100%;
    
    text-align: center;

    font-family: sans-serif;
}

*{
  user-select: none;
  -webkit-user-select: none;
}
/*
* Coverflow
*/


#coverflow {
    height: 100vh;
    width: 100vw;
    -webkit-perspective: 700px;
}

#coverflow section {
    display: position;
    position: absolute;
    top: 15%;
    left: 40%;
    
    width: 30vw;
    height: 60vh;
    
    margin-left: -90px;
    margin-right: -90px;
    border-radius: 10%;
    background-color: #EBDBFF;
    background-size: 100%;
    
   -webkit-transform-style: preserve-3d;
   -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
        transform-style: preserve-3d;
   
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
      -ms-transition: all 300ms ease-in;
        -o-transition: all 300ms ease-in;
          transition: all 300ms ease-in;

}



/*
* Controls
*/

#controls {
    position: absolute;
    width: 100%;
    bottom: 0%;
    z-index: 1;

    color: #999;
    user-select: none;
    display: flex;
    justify-content: space-between;
    font-size: 23px;
}

#controls a  {
  display: block;
    background-color: rgb(165, 111, 241); 
    cursor: pointer;
    color:#000;
    width: 47vw;
    padding:10px 25px;
    transition: 500ms all;

}

#controls a:hover  {
    color: 66FFFF;
    background-color: rgb(59, 32, 97);
    color:#f7f7f7;
}

.welcome{
  display: flex;
  height: 70%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding:10%;
}
.welcome img{
  width: 60%;
}

.welcome input{
  width:80%;
  padding:20px;
  border:0;
  outline: 0;
  border-bottom:1px solid #000;
  margin-bottom:30px;
  font-size:22px;
  transition: 600ms all;
}
.welcome input:valid{
    background-color: rgb(59, 32, 97);
    color: #fff;
    border: 2px solid #fff;
}
.welcome input:focus{
    background-color: rgb(59, 32, 97);
    color:#fff;
    border:2px solid #fff;
}
.welcome button{
  border:0;
  outline: 0;
  padding:15px 30px;
  font-size:20px;
  width: 80%;
  background-color: rgb(165, 111, 241);
  transition: 600ms all;
  cursor: pointer;
}
.welcome button:hover{
  background-color: rgba(165, 111, 241,.4);
}
.error{
  background-color: rgb(95, 17, 17);
  color:#fff;
  width: 80%;
  padding:10px;
  margin-bottom: 20px;;
}
#error{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media  screen and (max-width:990px)  {
  #coverflow section {
    width:70vw;
    margin-left:-25vw;
  }
}