@font-face {
    font-family: 'Avant Garde Pro Book'; /*a name to be used later*/
    src: url('ITCAvantGardePro-Bk.otf'); /*URL to font*/
}

body {
    font-family: 'Avant Garde Pro Book', sans-serif;
    background-color: black;
    color: white;
    margin: 0;
    overflow: hidden;
}

#whole-page{
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: 100vh;
	padding-left: 10px;
	padding-top: 10px;
}

#header-box{
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-left: 10px;
	padding-right: 10px;
	width: 90%;
}

.header-child-box{
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: #262626;
	padding: 10px;
	margin-left: 100px;
	height: 30px;
	text-align: center;
}

.header-title{
	font-weight: 700;
}

.header-subtitle{
	padding-left: 20px;
	padding-right: 20px;
}

.top-button{
	margin: 5px;
	height: 30px;
	width: 200px;
	font-weight: bold;
}


h1 {
    text-align: left;
    display: inline-block;
}
