* {
    margin: 0;
    padding: 0;
}

html {
    background-color: rgb(0, 0, 0);
    color:rgb(199, 199, 199);
}

.container {
    text-align: center;
    margin-top: 120px;
}

.container h1 {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 100px;
    text-transform: uppercase;
    font-weight: lighter;
}

input[name="url"]{
    width: 80%;
    min-width:300px;
    max-width:900px;
    height: 35px;
    padding: 10px;
    font-size: 20px;
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    border: 3px solid rgb(0, 69, 148);
    border-radius: 24px;
    transition: 0.5s;
    color:white;
    background-color: black;
}

input[name="url"]:focus{
    border: 3px solid rgb(0, 0, 0);
    background-color: rgb(0, 17, 37);
    color:rgb(61, 143, 236);;
    transform: scale(1.1);
}

.loginfield{
    width: 80%;
    min-width:300px;
    max-width:900px;
    margin-bottom:40px;
    height: 35px;
    padding: 10px;
    font-size: 20px;
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    border: 3px solid rgb(0, 69, 148);
    transition: 0.5s;
    color:white;
    background-color: black;
}

.loginfield:focus{
    border: 3px solid rgb(0, 0, 0);
    background-color: rgb(0, 17, 37);
    color:rgb(61, 143, 236);;
    transform: scale(1.1);
}

input[name="urlID"]{
    width: 80%;
    min-width:300px;
    max-width:900px;
    height: 40px;
    padding: 10px;
    font-size: 34px;
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    border: 3px solid white;
    transition: 0.5s;
    color:white;
    background-color: black;
}

input[name="urlID"]:hover{
    border: 3px solid rgb(73, 73, 73);
    background-color: white;
    color:black;
    transform: scale(1.1);
}

input[type="submit"]{
    margin-top:80px;
    padding: 3px 10px;
    width: 200px;
    height: 35px;
    background-color: black;
    color:white;
    border: 3px solid rgb(0, 69, 148);
    border-radius: 14px;
    font-size: 20px;
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s;
}

input[type="submit"]:hover{
    border: 3px solid rgb(0, 69, 148);
    background-color: rgb(30, 109, 199);
    color: rgb(0, 0, 0);
    transform: scale(1.1);
    transition: 0.5s;
}

input[type="submit"]:focus{
    border: 3px solid black;
}

.errors {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    margin-top: 30px;
    color: white;
    padding-bottom:50px;
}

a:visited {
    color: #c4c000;
    text-decoration: none;
}
a:link {
    color: #bbff00;
    text-decoration: none;
}

#ads {
    text-align:center;
    width:100%;
    margin-top:140px;
    opacity:0;
}

.qrImg {
    width: 90%;
    max-width:500px;
    -webkit-box-shadow: 0px 0px 24px 13px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 24px 13px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 24px 13px rgba(0,0,0,0.75);
}


.back {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 3px 20px;
    border: 1px solid red;
    color: red;
    border-radius: 12px;
    background-color: black;
  }