html {
    background-image: linear-gradient(-45deg, rgb(139, 139, 139), rgba(153, 153, 153, 0.576));
    background-size: 10px 10px;
}
body{
    width:  1000px;
    margin: auto;
    font-family: 'Ruluko', sans-serif;
    color: white;
}
header{
    color: white;
    font-family: 'Shrikhand', cursive;
    font-size:30px;
    text-align: center;
    text-shadow: 5px 5px rgba(0, 0, 0, 0.576);
}
.tracker{
    position: relative;
    left: 550px;
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: #0B3303;
    width:400px;
    border: groove rgb(255, 255, 255) 5px;
    border-radius: 20px;
}
.numDisks{
    background-color: #0B3303;
    color:white;
    margin: 25px 25px;
    border: none;
}
.board{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height:550px;
    width:800px;
    background-color: rgba(206, 206, 206,.8);
    position: relative;
    left:100px;
    border: groove rgb(255, 255, 255) 1px;
}
.tower{
    width: 260px;
    background-image: linear-gradient(90deg,rgba(0, 0, 0, 0) 115px, #9f834d 115px, #9f834d 145px, rgba(0,0,0,.5) 150px, rgba(0,0,0,0) 150px);
    height:500px;
    border-bottom: solid #9f834d 15px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    border-radius: 20px;
    margin: 10px 0 -10px 0;
    box-shadow:0 5px rgba(0, 0, 0, 0.5);
}
#counter, #minimum, .numdisks {
    font-family: 'Roboto Mono', monospace;
    text-shadow: 2px 2px rgb(114, 113, 113);
    font-size: 20px;
    text-align: center;
    margin: 0 0 4px 0;
}
#modal {
	background-color: rgba(0,0,0,.4);
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
    overflow: auto;
    display: none;
}
#modal-textbox {
	background-color: #0B3303;
	width: 350px;
	border-radius: 2px;
    margin: 300px auto;
    line-height: 1.2;
    text-align: center;
    padding: 5px 25px;
    border: groove rgb(255, 255, 255) 5px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}
#winner{
    font-size: 25px;
}
h2{
    color: white;
    font-family: 'Shrikhand', cursive;
    font-size:30px;
    text-align: center;
    text-shadow: 5px 5px rgba(0, 0, 0, 0.576);
}
li{
    list-style-type: none;
    margin: 5px 15px;
}
.rules {
    font-size: 20px;
    text-shadow: 2px 2px rgba(255, 255, 255, 0.3);
    background-color: #0B3303;
    border: groove rgb(255, 255, 255) 5px;
    border-radius: 20px;
    padding: 5px 15px;
}
footer{
    background-color: rgba(11, 51, 3, 0.2)
}
.disk{
    border: solid black 1px;
    border-radius:50px;
    height: 40px;
    box-shadow:2px 1px rgba(0, 0, 0, 0.5);
}
#disk1{
    width: 260px;
    background-color: green;
}
#disk2{
    width: 235px;
    background-color: yellow;
}
#disk3{
    width: 210px;
    background-color: teal;
}
#disk4{
    width: 185px;
    background-color: pink;
}
#disk5{
    width: 160px;
    background-color: skyblue;
}
#disk6{
    width: 135px;
    background-color: rebeccapurple;
}
#disk7{
    width: 110px;
    background-color: red;
}
#disk8{
    width: 85px;
    background-color: orange;
}
.reset{
    text-align: center;
    margin: 10px auto;
    padding:5px;
    background-color: #0B3303;
    border: groove rgb(255, 255, 255) 1px;
    border-radius: 20px;
    width: 100px;
    color:white;
    position: relative;
    left:450px;
}
