body {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
}

.container {
    width: 100%;
    display:flex;
    flex-wrap: wrap; /* This will control child items from over flowing */
    box-sizing: border-box;
    align-items: stretch;
}

p {
    font-size: 20px;
}

ul {
    font-size: 20px;
    margin:0;
}

h1 {
    font-family: 'Hind';
}

h1 em {
    color: #4FAD88;
    font-style: normal;
}

.box {
    flex: 0 0 50%;
    height: 48vh;
    width: 50vh;
    padding: 4em;
    /*background-color: rgb(194, 192, 192);*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top {
    justify-content: bottom !important;
}

.bottom {
    justify-content: top !important;
}

.full {
    height: 92vh;
}

.spacer {
    flex-grow: 2;
}

.footer {
    flex: 0 0 100%;
    min-height: 25vh;
    width: 100vh;
    padding: 4vh 0;
    background-color: #444;
    text-align: center;
    color: #eee;
    font-family: 'Roboto';
}

.label {
    padding: .3em 1em .4em 3.6em;
    margin: -64px -64px;
    color: white;
    /*font-variant: small-caps;*/
    /*background-color: rgba(255,255,255,0.5);*/
    background-color: rgba(80, 173, 136, 0.8);
    font-size: 18px;;
    font-weight: 800;
}

@media screen and (max-width: 992px) {
  .label {
      display: none;
  }
}

.box.border {
    border: solid 24px #4FAD88;
}

.box.light {
    background-color: rgba(0,0,0,0.1);
}

.box.green {
    background-color: #4FAD88;
    color:white;
}

.box.blue {
    background-color: #93D1DB;
}

.right {
    text-align: right;
}
.image {
    background-image: url('illustrasjon2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.eg {
    color: gray;
    font-size: 0.7em;
}

textarea, input {
	padding: 8px;
	display: block;
	border: none;
	border-bottom: 1px solid #ccc;
    width: 100%;
    overflow: auto;
}

#submit {
        display: inline-block;
        vertical-align: middle;
        overflow: hidden;
        text-decoration: none;
        background-color: inherit;
        text-align: center;
        cursor: pointer;
        white-space: nowrap;
        color: #fff;
        font-weight: 800;
        background-color: #4FAD88;
        /*#009688 !important;*/
        padding: 12px 16px;
}

#submit:hover {
        background-color: #34745a;
}


@media (min-width: 992px) and (max-width: 1299px) {
    .container {
    }
}

@media (max-width: 992px) {

    p {
        font-size: 16px;
    }
    ul {
        font-size: 16px;
}

    .box {
    flex: 0 0 100%;
    height: auto;
    width: 50vh;
    padding: 10vh 2em;
    }
}

.answer {
    font-size: 22px;
    color: #aaa
}
