* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
}

body {
    background-color: black;
    color: green;

    height: 100wh;
    width: 100wv;
    
    display: flex;
    flex-direction: column;
}

.prebox {
    padding: 0px 28px;
}
.box {
    border:4px solid green;
    padding: 24px;
}

/*
LINKS
*/
a {
    text-decoration: none;
    color: inherit;
    padding-left: 48px;
}
a:hover, a:active {
    background-color: green;
    color: black;
}



h1, a:hover, a:active {
    background-color: green;
    color: black;
}




td {
    padding-left: 48px;
}

input {
    background-color: inherit;
    border: inherit;
    caret-color:green;
    color: inherit;
}
input:focus {
  outline: none;
  border-color: transparent;
}