.mainPage{
	background-color: whitesmoke;
}

/* Shortcuts Column*/

.pageOptionsColumn{
	width: 20%;
	float: left;
	margin-top: 5%;
}

.pageOptions{
    position: relative;
	font-family: 'Pumpkin Cheesecake', sans-serif;
    font-size: 1.7vw;
	text-align: center;
	margin: 0;
    float: left;
	text-decoration: none;
}

.optionBox{
	width: 100%;
    padding-left: 15%;
    float: left;
}
  
.pageOptions:hover {
	color: #000;
    cursor: pointer;
}

.pageOptions::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: #000;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.pageOptions:hover::before {
	transform: scaleX(1);
}

.activeOption{
    text-decoration: underline;
	text-decoration-thickness: 1px;
	color: darkred;
    display:inline-block;
}

.activeOption:hover{
    display:inline-block;
    color: darkred;
    pointer-events: none!important;
}

.activeOption::before {
    pointer-events: none!important;
    background-color: transparent;
}

.activeOption:hover::before {
	pointer-events: none!important;
}

/* Content */
.contentColumn{
    width: 80%;
    float: left;
}

.content{
    display: none;
    width: 100%;
    min-height: 70vh;
    float: left;
    text-align: center;
    margin-top: 10vh;
    margin-bottom: 10vh;
    border-left-style: solid;
	border-left-color: darkred;
	border-left-width: 1px;
}

.activeContent{
    display: block;
}

.contentTitle{
    font-family: 'Montserrat', sans-serif;
    font-size: 2vw;
	text-align: center;
    color: darkred;
}

.descriptionBox{
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    text-align: left;
}

.descriptionTitle{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5vw;
}

.descriptionText{
    font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
}

@media (max-width: 414px), (orientation: portrait) {
    .pageOptionsColumn {
        display: none;
    }
    .contentColumn {
        width: 100%;
    }

    .content {
        display: block;
        min-height: auto;
        margin-top: 5vh;
        margin-bottom: 0;
        padding-bottom: 6vh;
        border-bottom: 1px solid;
        border-image: linear-gradient(to right, transparent, black, transparent) 1;
    }

    .contentTitle {
        font-size: 6vw;
    }
    .descriptionText {
        font-size: 3vw;
    }

    .descriptionTitle {
        font-size: 4vw;
    }
}