.mobilePage{
    display: none;
}

.desktopPage{
    display: block;
}

.pageSection{
    padding-bottom: 5%;
}

.sectionTitle{
    width: 30%;
    margin-left: 35%;
    margin-right: 35%;
    font-family: 'Montserrat', sans-serif;
    font-size: 2vw;
    text-align: center;
    color: darkred;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}

.sectionSubtitle{
    text-align: center;
	font-family: 'Montserrat', sans-serif;
    font-size: 1.5vw;
}

.sectionSubtitle2{
    text-align: center;
	font-family: 'Montserrat', sans-serif;
    font-size: 1.2vw;
}

.sectionText{
    font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
    text-align: center;
    text-decoration: none;
}

.changeCookies:hover{
    cursor: pointer;
    text-decoration: underline;
}

@media (max-width: 414px), (orientation: portrait) {
    .desktopPage{
        display: none;
    }
    .mobilePage{
        display: block;
    }
}