@font-face {
	font-family: "Poppins";
	src: url("./fonts/Poppins/Poppins-Regular.ttf");
}

@font-face {
	font-family: "Poppins";
	src: url("./fonts/Poppins/Poppins-Bold.ttf");
	font-weight: bold;
}

@font-face {
	font-family: "Poppins";
	src: url("./fonts/Poppins/Poppins-Italic.ttf");
	font-style: italic;
}

@font-face {
	font-family: "Poppins";
	src: url("./fonts/Poppins/Poppins-BoldItalic.ttf");
	font-weight: bold;
	font-style: italic;
}

body {
    width: 50%;
    margin: 0 auto;
    font-family: "Poppins";
    line-height: 30px;
    font-size: 17px;
}

.highlight {
    background-color: rgb(213, 239, 247);
    border-radius: 5px;
    margin: 0 auto;
    padding: 10px;
    /* padding-top: 10px; */
    /* padding-bottom: 10px; */
    /* box-shadow: 0 0 20px 1px rgb(213, 239, 247); */
}

#caeser-example-1 {
    text-align: center;
    /* text-align: center; */
    /* display: inline-block; */
    /* text-align: center; */
}

#caeser-example-1 span {
    width: 18%;
    display: inline-block;
    /* text-align: center; */
}

#caeser-example-2 label {
    width: 95px;
    display: inline-block;
}

hr {
    margin-top: 40px;
    margin-bottom: 40px;
}

.blue {
    font-weight: bold;
    color: blue;
}

.brown {
    font-weight: bold;
    color: brown;
}

.darkorange {
    font-weight: bold;
    color: darkorange;
}

.orange {
    font-weight: bold;
    color: orange;
}

.gold {
    font-weight: bold;
    color: gold;
}

.purple {
    font-weight: bold;
    color: purple;
}

.green {
    font-weight: bold;
    color: green;
}

.red {
    color: red;
}

.highlight-yellow {
    background-color: yellow;
    padding: 4px;
    border-radius: 4px;
}

.rotor {
    font-weight: bold;
    color: green;
}

.plugboard {
    font-weight: bold;
    color: purple;
}

.reflector {
    font-weight: bold;
    color: orange;
}

.rotor-1 {
    color: rgba(255, 0, 0, 1);
    font-weight: bold;
    /* border-radius: 4px; */
    /* padding: 4px; */
}

.rotor-2 {
    color: rgba(0, 128, 0, 1);
    font-weight: bold;
    /* border-radius: 4px; */
    /* padding: 4px; */
}

.rotor-3 {
    color: rgba(0, 0, 255, 1);
    font-weight: bold;
    /* border-radius: 4px; */
    /* padding: 4px; */
}

#rotor-example-1 {
    display: flex;
    justify-content: space-around;
}

#rotor-example-1 .rotor {
    width: 20%;
    padding-left: 20px;
    border-radius: 4px;
    padding-right: 10px;
}

#rotor-example-1 h4 {
    margin-bottom: 0;
}

#rotor-example-1 ul {
    margin-top: 0;
    padding: 0;
    list-style-type: none;
    font-size: 14px;
}

#rotor-example-2 li, #rotor-example-3 li {
    margin-bottom: 20px;
}

#rotor-example-2 span, #rotor-example-3 span {
    font-weight: normal;
}

table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    font-weight: normal;
    font-size: 14px;
}

table th, table td {
    border: 1px solid rgba(0, 0, 0, 0.25);
}

table th {
    text-align: left;
    width: 17%;
    padding-left: 5px;
}

table td {
    text-align: center;
}