.menu-option-container {
	display: flex;
	justify-content: start;
	border-bottom: var(--b-width) solid var(--text-col);
}

.menu-option {
	box-sizing: border-box;
	flex: 1;
	max-width: 16rem;
	padding: 0.5rem;
	cursor: pointer;
}

.menu-option-selected {
	border: var(--b-width) solid var(--text-col);
	border-top-left-radius: var(--b-radius);
	border-top-right-radius: var(--b-radius);
	border-bottom: none;
}

.menu-option-space {
	box-sizing: border-box;

	display: none;

}


.huge-font {
	font-size: 1.5rem;
}

.huge-bold-font {
	font-size: 1.5rem;
	font-weight: 900;

}

.middle-font {
	font-size: 1.2rem;
}

.middle-bold-font {
	font-size: 1.2rem;
	font-weight: 700;
}

.normal-font {
	font-size: 1rem;
}

.normal-bold-font {
	font-size: 1rem;
	font-weight: 900;
}

.btn {
    background-color: var(--accent-color);
    padding: 0.2rem 0.3rem;
    border: 2px solid transparent;
    border-radius: 5px;
    max-width: fit-content;
    cursor: pointer;
}

.btn:hover {
    transition: all 0.5s;
    border: 2px solid black;
}


.highlight {

	background-color: var(--accent-color);
	border-radius: 5px;
    padding: 0.3rem;
	
}

.little-form-container {
	max-width: 35rem;
	margin: auto;
}

.margin-top {
	margin-top: 1rem;
}

.margin-bottom {
	margin-bottom: 1rem;
}

.link-hover {
	text-decoration: underline;
}