/* 
filename: aqs_app_qrng.css
created: 20250630
created by: Tom Finke
updated: 20250813
updated by: Adelyn Tam
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    vertical-align: middle;
}

input, button {
    font-size: 2rem;
    padding: 1rem;
    border-radius: 10px;
}

body {
    padding: 15rem;
    background-image: linear-gradient(#000, #2a006c, #354CEC);
    color: whitesmoke;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    font-size: 2rem;
    font-family: "Mozilla Headline", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    position: relative;
    width:100%
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 180px;
}

.highlight {
    font-size: 2em;
    font-weight: bold;
    text-shadow: 0 0 4px #fff;
}

.subtitle {
    color: #ffdd33;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.input-container {
    margin: 20px 0;
    letter-spacing: 2px;
}

.input {
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: none;
    width: 150px;
    text-align: center;
}

.button {
    background-color: transparent;
    border: 2px solid #ffdd33;
    color: #ffdd33;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button:hover {
    background-color: #ffdd33;
    color: black;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

footer {
	font-family: "Courier New", Courier, monospace;
    font-size: 0.5em;
    text-align: center;
    color: white;
    letter-spacing: 2.2px;
	width: 100%;
	max-width: 100%;
	margin: 0px;
	padding: 0px;
	height: auto;
}

