*{
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', sans-serif;
}
.wrapper {
    background: url('images/sky.webp') no-repeat;
    background-size: cover;
    height: 100vh;

}
.navbar {
    width: 100%;
    height: 60px;
    background-color: rgba(0,0,0,.6);
}
.navbar ul{
    float: right;
    margin-right: 30px;
}
.navbar ul li{
    list-style: none;
    color: #999;
    display: inline-block;
}
.navbar ul li a{
    text-decoration: none;
    line-height: 60px;
    color: rgb(212, 212, 212);
    padding: 6px 15px;
    transition: 0.5s;
}
.navbar ul li a:hover{
    border-radius: 10px;
    color: #FFF;
    background: rgb(89, 28, 255);
}

.wrapper .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wrapper .centerHorizontal {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}

.nums {
    border:dimgrey 1px dashed; 
    max-width: 15px; 
    max-height: 15px; 
    width: 15px; 
    height: 15px; 
    padding: 10px;
    text-align: center; 
    display:inline-block; 
    font-weight:700; 
    float: none;
}
.letras {
    border:dimgrey 1px solid; 
    max-width: 15px; 
    max-height: 15px; 
    width: 15px; 
    height: 15px; 
    padding: 10px; 
    display:inline-block; 
    font-weight:700; 
    float: none;
}

.zero {
    max-width: 16px; 
    max-height: 16px; 
    display: block;
    min-width: 16px; 
    min-height: 16px; 
    padding: 20.6px;
    text-align: center; 
    display:inline; 
    font-weight:700; 
    float: none;

}

.input {
    border-radius: 10px;
    margin-top: 20px;
    line-height: 40px;
    font-size: 1.2em;
    text-align: center;
    padding: 3px;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #333;
    background-color: rgba(255,255,255,.1);
    color: #000;
}
.input:focus{
    box-shadow: 0 0 0 0;
    outline: 0;
}
.btn {

    height: 46px;
    padding: 10px 20px;
    background: rgb(89, 28, 255, 0.3);
    cursor: pointer;
    border: 1px solid rgb(89, 28, 255, .8);
    border-radius: 10px;
    color: #FFF;
    font-size: 1.2em;

}
.btn:hover {
    background: rgb(89, 28, 255, 0.6);

}

.nomeFinal {
    border-radius: 10px;
    background-color: rgba(255,255,255,.3);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    text-align: center;
    padding: 10px;
    margin: 20px 0 0px 0;
}