.startpages {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0% 8%;
    box-sizing: border-box;
}

.startpages p {
    font-size: 2vh;
    font-weight: 500;
}

.startpages input {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    border: 1px solid #DFDFDF;
    box-sizing: border-box;
    padding: 0 10px 0 20px;
    font-size: 2vh;
    font-weight: 500;
    color: var(--lightgrey);
}

.startpages input:focus {
    border: 2px solid var(--orange);
    outline: none;
    box-sizing: border-box;
}

#maxChildrenMessage {
    display: none;
    color: var(--red);
}

#errorMessage {
    display: none;
    color: var(--red);
    font-size: 14px;
}

.groupPicture {
    background-image: url("../media/group-picture.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 60%;
    width: 85%;
}

#childrenForm {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 5%;
    overflow: scroll;
    margin-bottom: 30px;
}

#page1Section1,
#page2Section1 {
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#page1Section2,
#page2Section2 {
    height: 45%;
    display: flex;
    flex-direction: column;
    gap: 5%;
}

#tipMessage {
    color: var(--lightgrey);
}

#page1Section3,
#page2Section3 {
    height: 25%;
    display: flex;
    flex-direction: column;
    gap: 10%;
}

.back1,
.back2,
.continue1,
.continue2,
#to-station,
.invisible {
    width: 100%;
    height: 24%;
    font-size: 2vh;
    font-weight: 500;
    border: none;
    border-radius: var(--buttonRadius);
}

.back1,
.back2 {
    background-color: var(--white);
}

.invisible {
    background-color: var(--whitegrey);
}

.continue1,
.continue2,
#to-station {
    background-color: var(--orange);
}

#to-station {
    position: relative;
    top: 34%;
}

#page2Section2 input {
    padding: 20px;
}

#page3Section1 {
    height: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#page3Section1 :first-child {
    padding-top: 7vh;
}

#page3Section2 {
    height: 20%;
    position: relative;
}

#page3Section3 {
    height: 25%;
    display: flex;
    flex-direction: column;
    gap: 10%;
}

#honeyImg {
    background-image: url("../media/honey.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 90%;
    width: 50%;
    position: relative;
    left: 50%;
    top: 15%
}

@media screen and (min-width: 769px) {
    .startpages {
        width: 60%;
        margin: 0 auto;
    }
}
