@font-face {
	font-family: "RobotoMonoThin";
	src: url("fonts/RobotoMono-Thin.ttf") format("truetype");
}

@font-face {
	font-family: "RobotoMonoLight";
	src: url("fonts/RobotoMono-Light.ttf") format("truetype");
}

@font-face {
	font-family: "RobotoMonoMedium";
	src: url("fonts/RobotoMono-Medium.ttf") format("truetype");
}

@font-face {
	font-family: "RobotoMonoBold";
	src: url("fonts/RobotoMono-Bold.ttf") format("truetype");
}

::selection {
    background-color: black;
    color: white;
}

body {
    padding: 50px 200px;
    font-family: "RobotoMonoMedium";
}

a {
    color: black;
    text-transform: uppercase;
    margin: 15px 0;
}

a:visited {
    text-decoration: none;
    color: black; 
}

.exit {
    position: fixed;
    display: inline-block;
    background-color: white;
    top: 0;
    width: 100%;
    padding: 20px 0;
}

.exit a {
    padding-right: 30px;
}

dd {
    margin-inline-start: 0px;
}

dt {
    color: #222222;
    font-size: 10px;
    margin-top: 20px;
}

input, textarea {
    width: 100%;
    box-sizing: border-box;
    font-size: 12px;
    font-family: "RobotoMonoLight";
    border: 1px solid #222222;
    margin: 10px 0px;
    padding: 10px;
}

label {
    text-transform: uppercase;
}

input:focus, textarea:focus, select:focus {
    background-color: #fafafa;
    box-shadow: 1px 1px 0px 1px rgba(0,0,0,1);
    outline: none;
}

#tools {
    font-family: "RobotoMonoMedium";
    font-size: 14px;
    width: 200px;
    height: 300px;
}

#submit, button {
    cursor: pointer;
    width: 100px;
}

button {
    -webkit-appearance: none;
    border: 1px solid black;
    margin: 30px 0;
    background-color: white;
    font-family: inherit;
    padding: 10px;
}

#submit:hover, button:hover {
    color: white;
    background-color: black;
}

td {
    border: 1px solid black;
    padding: 10px;
}

th {
    padding: 10px;
    text-transform: uppercase;
    text-align: left;
}

tr {
    font-size: 14px;
}

table {
    font-size: 14px;
    width: 100%;
}

table img {
    width: 200px;
}

@media only screen and (max-width: 600px) {
    body {
      padding: 50px 100px;
    }
  }
