@font-face {
    font-family: IMFellEnglish;
    src: url(../fonts/IMFellEnglish-Regular.ttf);
}
@font-face {
    font-family: Vollkorn;
    src: url(../fonts/Vollkorn-VariableFont_wght.ttf);
}

main {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    margin-left: auto;
    margin-right: auto;
    font-family: Vollkorn, sans-serif;
    color: #495762;
}

h1 {
    font-weight: 400;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    line-height: 1.25;
    font-family: IMFellEnglish;
}
h2 {
    font-style: italic;
    font-weight: 400;
    margin-top: 2.1rem;
    margin-bottom: 1.4rem;
    font-size: 1.8rem;  
    line-height: 1.25;
    font-family: IMFellEnglish;
}
p, h3, table, label {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 2.15rem;
    vertical-align: baseline;
}
li {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
    line-height: 2.15rem;
    vertical-align: baseline;
}
button {
    font-size: 1.1rem;
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
math {
    font-size: 1.4rem;
}
a {
    color:rgb(75, 120, 226);
}
.quote {
    background-color: #f9f9f9;
    padding: 15px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: 5px solid grey;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.overflow-container {
    overflow: auto; 
    scrollbar-width: none;
}
.drop-cap:first-letter {
    float: left;
	font-family: IMFellEnglish;
	font-size: 3rem;
	margin-right: 0.5rem;
}


.collapsible input[type='checkbox'] { 
    display: none;
} 
.collapsible { 
    background-color: #f9f9f9;
    padding: 10px 15px 10px 15px; // top right bottom left
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: 5px solid grey;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.collapsible .lbl-toggle { 
    display: block; 
    font-size: 1.15rem;
    cursor: pointer; 
    border-radius: 7px; 
    transition: all 0.25s ease-out;
    margin: 0px;
} 
.collapsible .lbl-toggle::before { 
    content: ' '; 
    display: inline-block; 
    border-top: 5px solid transparent; 
    border-bottom: 5px solid transparent; 
    border-left: 5px solid currentColor; 
    margin-right: .7rem; 
    transform: translateY(-2px); 
    transition: transform .2s ease-out; 
} 
.collapsible .toggle:checked+.lbl-toggle::before { 
    transform: rotate(90deg) translateX(-3px); 
} 
.collapsible .collapsible-content { 
    max-height: 0px; 
    overflow: hidden; 
} 
.collapsible .toggle:checked + .lbl-toggle + .collapsible-content { 
    max-height: 10000px; 
} 
.collapsible .toggle:checked+.lbl-toggle { 
    border-bottom-right-radius: 0; 
    border-bottom-left-radius: 0; 
} 
.collapsible .collapsible-content p { 
}

/* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ 
@media (min-width:1025px)  {
    main {
        width: 87.5%;
        max-width: 700px;
    }
    .overflow-container {
        overflow: visible;
    }
}

.code-highlight {
    font-size: 1rem;
    line-height: 1.5rem;
    border-radius: 5px;
}