/* ------------------------------------> INITIAL PAGES */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
    justify-content: space-between;
    position: relative;
}

.background {
    background-image: url(../images/background.jpg);
}

.main {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.content-container--initialPage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    /*flex-direction: row;
    justify-content: space-around;*/
}

.info-container, .question-container {
    /*width: 45%;*/
}

.title {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.benefit-content {
    width: 75%;
}

.facts-container {
    max-width: 75rem;
}

.form-container {
    margin: 5rem auto;
    width: 50%;
}

.form-display {
    border: white 4px dashed;
    box-sizing: border-box;
    padding: 30px 12px;
}