* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
  font-family: 'Iansui094-Regular';
  src: url('Iansui094-Regular.woff') format("woff"),
         url('Iansui094-Regular.ttf') format("truetype");
}
body {
    font-family: 'Iansui094-Regular';
	color: #1111CD;
	background-color: #ffffff;
	border-radius:30px;
	border-width: 2px 8px 12px 8px;
	border-style: solid;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
	flex-direction: column;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.img_logo
{
  width: 210px;
  height: 50px;
  border-radius: 8%;
  object-fit: cover;
}
#processbar
{
	float: right;
	padding: 10px;
	width: 80vh;
	height: auto;
}
#img_processbar
{
	width: auto;
}
#processtable
{
	width:80vw;
	
}
#DSP
{
	margin: 10px;
}
nav {
    display: flex;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
}
input
{
	width: 100%;
}
table
{
	table-layout: fixed;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #fff;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }
}