html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    display: grid;
    background: url("../img/bg.jpg");
    background-size: cover;
}

.header {
    display: grid;
    width: 100%;
    grid-row: 1;
}

.header .logo {
    height: 100px;
    width: 110px;
    grid-column: 1;
}

.header .title-div {
    grid-column: 3;
    display: flex;
    flex-direction: row-reverse;
}

.header .title {
    height: 100px;
    width: 200px;
}

.header .header-table {
    width: 100%;
    border-spacing: 8px;
    border-collapse: separate;
    grid-column: 2;
}

.header .menu-td {
    width: 240px;
    text-align: center;
    border: thin solid #2ae;
    border-radius: 8px;
    padding: 8px 8px;
}

.header .menu-a {
    font-family: Roboto, sans-serif;
    text-decoration: none;
    color: #2ae;
    font-size: 12pt;
}


.banner {
    grid-row: 2;
    grid-column: 1/4;
    background-color: #6a6;
    color: white;
    text-align: center;
    padding: 8px;
    font-family: Roboto, sans-serif;
    font-size: 3vw;
    height: 56px;
    text-overflow: hidden;
}


.main {
    margin: auto auto;
    grid-row: 3;
}

.main .left-slider-container {
    overflow: hidden;
    max-width: 290px;
    height: 472px;
	margin-top: 48px;
}

.main .slider-container {
    width: 348px;
    margin-top: 48px;
    margin-left: 56px;
}

.main-slider-a {
    text-decoration: none;
    display: inline-block;
}

.main .img-container {
    width: 150px;
    margin:8px;
    overflow: hidden;
}

.main .img-container .img-container-inner {
    width: 150px;
    height: 150px;
    overflow: hidden;
}

.main .img-overview {
	margin: 0;
    width: 150px;
    height: 150px;
    transition: transform .2s; /* Animation */
}

.img-overview:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.main .img-title {
    margin: 0;
    color: #22f;
    background: white;
    text-align: center;
    font-family: Roboto sans-serif;
    font-variant: all-small-caps;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

.main .main-central-td {
	text-align: center;
}

.main .main-right-td {
    text-align: center;
    padding: 64px 64px;
}

.main .main-right-a-cure-salt {
    display: block;
    margin: 24px 0 0 0;
    font-family: Roboto, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #29b;
    font-size: 32pt;
    text-shadow: 1px 1px 2px #555;
    text-align: center;
}

.main .main-right-a-cure-flu {
    display: block;
    margin: 32px 0;
    font-family: Roboto, sans-serif;
    text-decoration: none;
    color: #29f;
    font-size: 22pt;
    text-shadow: 1px 1px 2px #555;
}

.main .main-right-a-cure-smoke {
    display: block;
    margin: 32px 0;
    font-family: Roboto, sans-serif;
    text-decoration: none;
    color: #886;
    font-size: 22pt;
    text-shadow: 1px 1px 2px #aae;
}

.main .main-right-a-cure-bath {
    display: block;
    margin: 32px 0;
    font-family: Roboto, sans-serif;
    text-decoration: none;
    color: #26a;
    font-size: 22pt;
    text-shadow: 1px 1px 2px #aaa;
}


.main .main-right-a-cure-digestion {
    display: block;
    margin: 32px 0;
    font-family: Roboto, sans-serif;
    text-decoration: none;
    color: #884;
    font-size: 22pt;
    text-shadow: 1px 1px 2px #aaa;
}


.footer {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    grid-row: 4;
}

.footer .footer-hr {
    width: 100%;
}

.footer .footer-table {
    width: 100%;
    font-size: 10pt;
    font-family: Roboto, sans-serif;
}

.footer .footer-table .left-td {
    width: 320px;
    justify-content: left;
    align-items: center;
    color: #555;
}

.footer .footer-table .right-td {
    width: 296px;
    justify-content: right;
    align-items: center;
    text-align: right;
    color: #555;
}
