body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 400px;
    font-family: 'Open Sans';
    font-style: normal;
    font-size: medium;
    background-color: rgb(252, 240, 209);
}

#top {

    min-width: 400px;

    text-align: center;
    background-color: rgb(30, 30, 30);
}

.top-info {
    display: inline-table;
    vertical-align: middle;
}

.top-info p {
    color: rgb(161, 126, 36);
}

.top-info a {
    text-decoration: none;
    color: rgb(161, 126, 36);
}

.mx {
    padding-left: 10px;
}

.lx {
    padding-left: 20px;
    padding-right: 20px;
}

header {
    display: grid;
    grid-template-areas: 'logo' 'nav';
    width: 400px;
    margin: 0px auto;
    margin-bottom: 30px;
}

.logo {
    grid-area: logo;
    width: 400px;
    text-align: center;
    padding-left: 0;
}

.nav {
    grid-area: nav;
    width: 400px;
    text-align: center;
    padding-right: 0;
}

.nav ul {
    padding-inline-start: 0px;
}

.nav ul li {
    display: inline;
}

.nav ul li a:link, a:active, a:visited {
    color: rgb(112, 82, 6);
    font-size: 1.3em;
    text-decoration: none;
}

.nav ul li a:hover {
    text-decoration-line: underline;
}

.table {
    display: block;
    margin-bottom: 50px;
}

#wrapper {
    width: 400px;
    margin: 0 auto;
}

#welcome {
    width: 400px;
    display: table;
    margin: 0px auto;
}

#welcome .left-box {
    display: block;
    width: auto;
    background-color: white;
}

#welcome .left-box h1 {
    text-align: center;
    color: rgb(112, 82, 6);
	text-align: center;
}

#welcome .left-box p {
    padding: 20px;
    color: rgb(112, 82, 6);
	text-align: center;
}

#welcome .right-box {
    width: auto;
    display: block;
    line-height: 0;
}

#services {
    width: 400px;
    display: table;
}

#services .left-box {
    width: auto;
    display: table-footer-group;
    line-height: 0;
}

#services .right-box {
    width: auto;
    display: table-header-group;
    background-color: white;
}

#services .right-box h1 {
    text-align: center;
    color: rgb(112, 82, 6);
	text-align: center;
}

#services .right-box p {
    padding: 20px;
    color: rgb(112, 82, 6);
	text-align: center;
}

#about-us {
    display: table;
}

#about-us .left-box {
    width: auto;
    display: block;
    background-color: white;
}

#about-us .left-box h1 {
    text-align: center;
    color: rgb(112, 82, 6);
}

#about-us .left-box p {
    padding: 20px;
    color: rgb(112, 82, 6);
	text-align: center;
}

#about-us .right-box {
    width: auto;
    display: block;
    line-height: 0;
}

#contacts {
    display: table;
}

#contacts .left-box {
    width: auto;
    display: table-footer-group;
    line-height: 0;
}

#contacts .right-box {
    width: 400px;
    display: table-header-group;
    background-color: white;
}

#contacts .right-box h1 {
    text-align: center;
    color: rgb(112, 82, 6);
}

#contacts .right-box p {
    padding: 20px;
    color: rgb(112, 82, 6);
}

footer {
    width: 100%;
    height: 100px;
    background-color: rgb(30, 30, 30);
}

footer p {
    padding-top: 15px;
    color: rgb(112, 82, 6);
}

footer a {
    color: rgb(238, 20, 93);
    text-decoration: none;
}