body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #222;
    color: #fff;
}

.container {
    width: 950px;
    margin: 0 auto;
    position: relative;
	    border-left: 2px solid antiquewhite;
    border-right: 2px solid antiquewhite;
}

.top-menu {
    height: 40px;
    background-color: #5a1100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.menu-left {
    display: flex;
    gap: 10px;
}

.menu-right {
    margin-left: auto;
	    display: flex;
    gap: 10px;
}

.menu-button {
    background-color: #5a1100;
    color: #ffe8c4;
    padding: 10px 16px 15px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

.menu-button:hover {
    background-color: #ffe8c4;
    color: #5a1100;
}

.header-image {
    width: 100%;
    height: 650px;
    background-image: url('headerImg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 3;
}

.demo-button, .download-button {
    cursor: pointer;
	position: absolute;
    z-index: 4;
}

.demo-button {
    top: 10px;
    right: 80px;
	height: auto;
	width: 200px;
    object-fit: cover;
}

.download-button {
    top: 440px;
    right: 160px;
	height: auto;
	width: 250px;
    object-fit: cover;
}



.below-header-image {
    width: 100%;
    height: 400px;
    margin-top: 500px;
    background-image: url('topImg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
}

.welcome-text {
    background-color:#000;
    padding: 40px;
    padding-left: 120px;
    padding-right: 120px;
	padding-bottom: 60px;
    width: 520px;
	height: 140px;
    text-align: center;
    line-height: 25px;
    font-size: 18px;
    font-weight: 600;
    color: antiquewhite;
    position: relative;
    top: 280px;
    left: 100px;
}

.welcome-text h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    margin: 12px 0 20px 0;
    color: antiquewhite;
}

.welcome-text p {
    margin: 0;
}

.main-content {
    background-color: #000;
    position: relative;
    z-index: 0;
}

.bullet-list {
    padding: 0px;
    padding-left: 100px;
	padding-right: 100px;
    padding-top: 180px;
    position: relative;
    z-index: 0;
	font-size: 20px;
}

.bullet-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
	
}

.thumbnail {
    width: 218px;
    height: 165px;
    object-fit: cover;
    margin-right: 30px;
}

.bullet-text {
    display: flex;
    flex-direction: column;
}

.bullet-text h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    margin: 0 0 5px 0;
    color:antiquewhite;
}
.bullet-text h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    margin: 0 0 5px 0;
    color:antiquewhite;
}
.bullet-text p {
    font-size: 15px;
    line-height: 22px;
	font-weight: 600;
    margin: 0;
    color: antiquewhite;
}

.file-info {
    background-image: url('fileBar.png');
	background-repeat: no-repeat;
     background-size: cover;
    color: antiquewhite;
    padding: 10px 10px 12px 30px;
    margin-top: 20px;
    font-size: 14px;
	font-weight: 600;
	height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	width: 450px;
}

.file-info-gray{
	background-image: url('fileBarGray.png');
	background-repeat: no-repeat;
    background-size: cover;
    color: antiquewhite;
    padding: 10px 10px 12px 30px;
    margin-top: 20px;
    font-size: 14px;
	font-weight: 600;
    display: flex;
	height: 40px;
    justify-content: space-between;
    align-items: center;
	width: 450px;
}

.file-info-download-button {
    width: 120px;
    height: auto;
    object-fit: cover;
    cursor: pointer;
}

.about-section {
    padding: 20px;
    padding-left: 130px;
	padding-right: 130px;
    position: relative;
    z-index: 0;
	text-align: center;
}

.about-section h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    margin: 0 0 10px 0;
    color:#ffe8c4;
}

.about-section p {
    font-size: 18px;
    line-height: 30px;
    color: #ffe8c4;
}


.footer {
    width: 100%;
    height: 80px;
    background-color: antiquewhite;
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer p {
    font-size: 14px;
	font-weight: 600;
    margin: 0;
    color: #000;
}