html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    background-color: snow;
}
h1 {
    padding: 20px;
    width: auto;
    font-family: Nunito Sans;
    padding: 20px;
    margin: 20px;
    /* background-image: url("../img/lights.png");
    background-position: bottom -50px left;    
    background-size: contain;
    background-repeat: no-repeat; */
}
#menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu {
    padding: 20px;
    margin: 20px;
    width: 100%;
}
table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

td:first-child {
    width: 80%;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

a {
    text-decoration: none; 
    transition: box-shadow 0.3s ease;
    padding: 20px;
}

a:visited {
    text-decoration: none; 
}
#home-button {
    position: fixed;
    left: 25px;
    bottom: 25px;
    display: block;
    transition: box-shadow 0.3s ease;
    background-color: #ECE8EF;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    overflow: hidden;
}
#home {
    max-width: 100%;
    max-height: 100%;
    display: block;
}
#home-button:hover {
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
#toggle-button {
	padding: 11px 31px;
	margin: 20px;
	border: 1px solid #b3b3b3;
	border-radius: 31px;
	font-size: 12px;
	color: #e6e6e6;
	text-transform: uppercase;
	background: transparent;
}
#toggle-button:hover {
	font-weight: bold;
	font-size: 13px;
	color: #fff;
	border-color: #fff;
    cursor: pointer;
}
#toggle-button:focus {
	outline: none;
}
#toggle-button:active {
	border-color: #838383;
	font-weight: normal;
	font-size: 12px;
	color: #ccc;
}
.hidden {
	display: none;
}
