body{
    background-color: black;
    color:antiquewhite;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.main{
    background-color: black;
    color:antiquewhite;
    display: grid;
    place-items: center;
    font-size: 20px;
}

a {
    color:aliceblue;
}

input{
    color:antiquewhite;
    border-color: antiquewhite;
    background-color: black;
}

input[type=number]{
    color:black;
    background-color: antiquewhite;
    border-color: antiquewhite;
    padding: 10px;
    margin: 10px;
}

label {
    margin-top: 20px;
}

#plugboard-label {
    margin-top: 50px;
    margin-bottom: 20px;
}

.board{
    display: grid;
    place-items: center;
}

.board h1{
    display: inline-flex;
    justify-content: center;
    align-items: center;

    background-color: black;
    margin: 5px;

    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;

    width:20px;
    height:20px;
    padding: 10px;
    border-radius: 50%;
    border: 2px solid rgb(134, 144, 154);
}
#plugboard-wrapper { 
    width: 900px; 
    height: 220px; 
    position: relative;
}

.plugboard.board { 
    width: 100%; 
    position: relative; 
}

.plugboard h1 { 
    font-size: 30px;
}

.plugboard#canvas { 
    width: 100%; 
    height: 100%; 
    position: absolute; 
    top: 0; 
    left: 0;
}

#ciphertext {
    font-family: 'OldNewspaperTypes', sans-serif;
    place-self: center;
    max-width: 600px;
    overflow-wrap: break-word;
}

footer{
    font-size: 15px;
    color:aliceblue;
    position: fixed;    
    bottom: 0;
    left: 0;
    margin: 10px;
}

p{
    text-align: center;
    max-width: 90vw;
    line-height: 2.0;
}

strong {
    font-size: 20px;
}

button {
    color: black;    
    background-color: antiquewhite;
    border: none;
    border-radius: 10px;
}
