*{
    user-select: none;
}
body{
    background-color:black;
    margin: 10px auto; 
    padding: 10px;
    overflow: hidden;
}
nav{
    border: solid white;
    text-align: center;
    width: 90%;
    max-width: 900px;
    margin: 10px auto;
    border-radius: 10px;
    padding:10px;
}

.container{
    padding:10px;
    width: 90%;
    max-width: 900px;
    border: solid white;
    color: white;
    margin:10px auto;
    border-radius: 10px;
}
.text{
letter-spacing: 1.3px;
}
.text p{
    color: rgb(217, 214, 214);
}
.text h1{
    font-family: tahoma;
}
.btn{
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
    border-radius: 10px;
    padding:10px;
    width: 80%;
    max-width: 900px;
    text-align: center;
    border: solid 1px;
    transition: .2s;
    font-size: larger;
    background-color: white;
    color: black;
}
.btn:active{
    background-color: rgb(142, 142, 142);
    width:50% ;

}

.form{
    position: absolute;
    width: 98%;
    max-width: 900px;
    left: 50%;
    transform: translate(-50%,100%);
    height: 99%;
    border: solid white;
    background-color: black;
    transition: .5s;
    z-index: 1000;
    border-radius: 20px;
    opacity: 0;
}
.show{
    transform: translate(-50%,-48%);
    left: 50%;
    top: 50%;
    opacity: 1;
}
.hide{
    left: 50%;
    transform: translate(-50%,100%);
    opacity: 0;
}
h2{
    color: white;
    margin-top: 50px;
    font-family: tahoma;
}
h3{
    color: white;
    font-family: tahoma;
}
form input{
    display: block;
    margin: 10px auto;
    width: 85%;
    max-width:500px;
    padding:10px;
    border-radius: 5px;

}
form input[type=button]{
    width: 90%;
    max-width: 500px; 
    transition: .3s;
    background-color: rgb(92, 92, 250);
    border: none;
}
form input[type=submit]:active{
    background-color: rgb(142, 142, 142);
    width:50% ;
    background-color: transparent;
    border: solid white;
    color: white;
}
.closd{
    color: white;
    background-color: tomato;
    padding: 15px;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 50px;
}