html {
    height:100vh!important;
}
body {
  color: #333;
  font-family: 'Helvetica', 'Arial', sans-serif;
}
/* BASE 2 */
body {
    color: #333;
    font-family: 'Helvetica', 'Arial', sans-serif;
    display: flex;
    justify-content: space-between;
    /*overflow: hidden;*/
    overflow-x:hidden;
    position:relative;
}

main {
  display: flex;
  justify-content: space-between;

  margin: 40px 20px 0 20px;
}
/* BASE 2 */
main {
    display: flex;
    justify-content: space-between;
    margin: 40px 20px 0 20px;
}

button,
input[type="submit"],
input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
/* BASE 2 */
button,
input[type='submit'],
input[type='reset'] {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.page-wrapper {
    /*width: 100vw;
  height: 100vh;*/
    width: auto !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(250,246,241);
    background: linear-gradient(180deg, rgba(250,246,241,1) 0%, rgba(232,224,212,1) 100%);
}
/* BASE 2 */
.page-wrapper {
    width: 100%;
    width: auto !important;
    height: auto !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #faf6f1;
    background: linear-gradient(180deg, #faf6f1 0%, #e8e0d4 100%);
}

.page-wrapper.landing-page {
  width: 100vw!important;
  height: 100vh!important;
}

/* BASE 2 */
footer {
    color: #4a4a4a;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
}

/* BASE 2 */
@media screen and (min-width: 1361px) {
    .page-wrapper {
        width: 100vw!important;
    }
}