* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    background-color: transparent;
    width: 12px;
}

*::-webkit-scrollbar-track {
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    border-radius: 20px;
    border: 3px solid transparent;
    background-color: rgba(0,0,0,0.3);
    background-clip: content-box;
}

body {
    background-color: #170C13;
    font-family: Arial, sans-serif;
    font-size: calc(.85rem + 1px);
    color: #F3E9F0;
}

h1, h2, h3 {
    font-weight: bold;
    color: #CFA5BE;
}

h2, h3 {
    padding: 0.5em 0;
}

aside h2 {
    padding-bottom: 1em;
}

a {
    text-decoration: none;
    color: #70B2B1;
}

ul {
    margin-left: 20px;
    margin-bottom: 1em;
}

ol {
    margin: 10px 25px;
}

li {
    padding-bottom: 0.2em;
}

/* element styling */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 1em 0;
    margin-bottom: 1.5em;
    overflow: overlay;
    background-color: #333;
}

nav {
    position: fixed;
    background-color: #1d1c1c;
    color: #333;
    margin-top: 0.9em;
    width: 100%;
    overflow: overlay;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: inline-flex;
    justify-content: space-around;
    width: 80%;
    justify-self: flex-end;
    margin-bottom: 0.5em;
}

nav ul li {
    display: inline;
}


aside {
    position: relative;
    height: 97vh;
    width: 30vw;
    padding: 1.5em;
    top: -1em;
    overflow: scroll;
}

main {
    width: 70vw;
    padding: 0.5em 1em;
    border-radius: 4px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

section {
    padding: 1em;
}

button {
	width: 100%;
	max-width: 173px;
	display: block;
	cursor: pointer;
	margin: 1.5rem 0;
	background-color: rgb(176, 109, 201);
	border-radius: 2px;
	font-weight: bold;
	padding: 0.75rem;
	outline: none;
	border: none;
	color: #fff;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff; /* Button text color */
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.input {
    display: block;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.input label,
.checklist > label {
	display: block;
	font-weight: bold;
}

.input input,
.input select {
	width: 100%;
    display: block;
	border-radius: 2px;
	border: 1px solid #000;
	padding: 0.375rem 0.5rem;
	min-height: 2rem;
	height: 2rem;
}

#wrapper {
    position: relative;
    display: flex;
    height: 90vh;
    width: 100%;
    flex-direction: row;
}

#row-1 {
    display: flex;
    height: calc((100vh - 1em)*0.2);
    justify-content: space-around;
    flex-direction: column;
    flex-wrap: wrap;
}

#row-2 {
    height: calc((100vh - 1em)*0.7);
    display: flex;
    overflow: scroll;
}

#left {max-width: 230px;}

#prizes {
    display: none;
}

#players {
    display: none;
}

#winners {
    display: none;
}

#donors {
    display: none;
}