body {
    margin: 0px;
    background-color: #FFFFFF;
    font-family: Arial;
}
.header {
    width: 100%;
    height: 70px;
    background-color: rgb(218, 41, 28);
    text-align: center;
    margin-top: -30px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #FFFFFF;
    font-size: 30px;
    font-weight: bold;
}
.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	  -webkit-user-select: none; /* Safari */
	   -khtml-user-select: none; /* Konqueror HTML */
		 -moz-user-select: none; /* Firefox */
		  -ms-user-select: none; /* Internet Explorer/Edge */
			  user-select: none; /* Non-prefixed version, currently
									supported by Chrome and Opera */
}
.container {
    margin: 10px;
    background-color: #FFFFFF;
}
#history-back:hover{
    cursor: pointer;
}
.btn {
    background-color: rgb(218, 41, 28);
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    font-size: 20px;
    padding: 1px;
    margin-left: 8px;
    margin-right: 8px;
}
.card {
    transition: 0.1s;
    width: 130px;
    height: 130px;
    font-size: 18px;
    box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.3);
    background-color: #f1f1f1;
}
.tutorial-item {
    width: 100%;
    text-align: center;
    box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.3);
    background-color: #f1f1f1;
}
li {
    text-align: start;
}
.tutorial-text {
    font-size: 15px;
    text-align: left;
    text-indent: 5px;
}
#tutorial {
    display: grid;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(100px, 1fr));
}
.top-card-container{
    display: grid;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(100px, 1fr));
}
.all-card-container {
    display: grid;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(100px, 1fr));
}
.card:hover {
    font-size: 19px;
    box-shadow: 0px 0px 2px 3px rgba(0,0,0,0.3);
    cursor: pointer;
}
.card-text { 
    outline: 1px solid #eee; 
    display: table; 
    width: 100%; 
    color: rgb(218, 41, 28);
}
.card-text > p { 
    display: table-cell; 
    height: 95%; 
    vertical-align: middle;
    text-align: center;
}
.wiki-link{
    margin-left: 10px;
    margin-top: 20px;
    margin-bottom:50px;
    height: 40px;
    font-size: 15px;
}
.type-header {
    font-weight: bold;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #888; 
}
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}
ul.breadcrumb {
    padding-left: 15px;
    padding-top: 15px;
    list-style: none;
}
ul.breadcrumb li {
    display: inline;
    font-size: 20px;
}
ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}
ul.breadcrumb li a {
    color: rgb(218, 41, 28);
    text-decoration: none;
}
ul.breadcrumb li a:hover {
    color: rgb(218, 41, 28);
    text-decoration: underline;
}