h1 {
	text-align: center;
	color: white;
	font-family: 'Courier New', Courier, monospace;
}

h2 {
	text-align: center;
	color: white;
	font-family: 'Times New Roman', Times, serif;
	font-size: 15px;
	margin-top: 90%;
}

p {
	text-align: center;
	color: white;
	font-family: 'Courier New', Courier, monospace;
}

body {
	background-color: rgb(24, 23, 23);
	transition: margin-left .5s;
    padding: 0;
}

img {
	margin-top: 2%;
	width: 90%;
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 25px;
	width: 70%;
}

@media (max-width: 600px) {
	.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 25px;
	width: 50%;
	}
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    margin-top: 60px;
}

.sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.4s;
}

.sidebar a:hover {
    background-color: #575757;
}

.sidebar .closebtn {
    position: absolute;
    cursor: pointer;
    top: 0;
    font-size: 25px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
}

.openbtn:hover {
    background-color: #444;
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}