/** font stuff **/
}
.title {
  padding-top: 20px;
  padding-left: 20px;
}

body {
    background-color: #C0D684;
    font-size: 13px;
    color: #9F2B68;
}

h1, h2 {
    color: #3D0B37;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
}

.navlink, .navlink a:link, .navlink a:visited {
    color: #63264A;
    font-weight: bold;
    text-decoration: none;
}
    
.navlink {
    background-color: rgb(255,221,221);
    margin: 5px;
}

.special {
    color: #D6939F;
    font-weight: bold;
}

.col2 a:visited, .col2 a:link, .col3 a:link, .col3 a:visited {
    color: palevioletred;
    font-weight: bold;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 40%,rgba(255,211,221,0.7) 41%, rgba(255,211,221,0.7) 75%, rgba(255,255,255,0) 76%);
    text-decoration: underline 3px;
    text-decoration-color: rgb(179,212,251);
    text-decoration-skip: ink;}

a:link {
    color: #D6939F;
    font-weight: bold;
    text-decoration: none;
}

a:visited {
    color: #D6939F;
    font-weight: bold;
    text-decoration: none;
}

a:hover, .col2 a:hover, .col3 a:hover, .navlink a:hover {
    color: cornflowerblue;
    font-weight: bold;
    text-decoration: underline 3px;
}

.hide {
  display:none
}

.navlink:hover .hide {
    display: block;
    background-color: white;
    font-weight: strong;
    font-style: bold;
    font-size: 12px;
    color: #51414F;
    margin-top: 0em;
}

.navlink:hover {
    background-color: white;
    color: #D6939F;
}

.subtitle {
    font-style: bold;
    font-size: 11px;
    color: #51414F;
    margin-top: 0em;
}

ul {
    list-style-type: "*";
}

details {
    background-color: #D8BFD8;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

summary {
    font-size: 15px;
}

/** COLUMNS **/

#wrapper {
    height: 100%;
    padding: 1em;
}

.main {
    display: flex;
    min-width: 1300px;
    max-width: 1300px;
    height: 100%;
    justify-content: space-around;
}

.col1, .col2, .col3 {
   
    margin-top: 1em;
}

.col1 {
    width: 20%;
    min-width: 120px;
    height: 800px;
    /** background-color: greenyellow; **/
    /** Leave the code below alone - it keeps the column stuck in place! **/
    position: -webkit-sticky;
    position: sticky;
    top: 3em;
}

.col2 {
    width: 45%;
    /** background-color: yellow; **/
    height: 100%;
}

.col3 {
    
    width: 25%;
    min-width: 100px;
    max-width: 290px;
    height: 50%;
    /** background-color: mediumpurple; **/
    position: -webkit-sticky;
    position: sticky;
    top: 2em;
}



/** ELEMENTS **/

.sec {
    padding: 10px;
    background: url(img/hip-square.png);
    box-shadow: 5px 5px rgba(214, 147, 159, 50%);
    filter: brightness(110%);
    margin: 10px;
    min-width: 200px;
    max-width: 500px;
    border: thin solid rosybrown;
}
.sec2 {
	height: 70px;
	min-width: 200px;
	max-width: 500px;
	position: relative;
	border: thin solid rosybrown;
	margin: 10px;
	padding: 10px;
    	background: url(img/yellowbg.jpg);
    	box-shadow: 5px 5px rgba(214, 147, 159, 50%);
    
}
.col1 .sec {
    min-width: 100px;
}

.col3 .sec {
    font-size: 12px;
}

.container {
    height: 150px; 
    overflow: auto; 
    background-color: rgb(255,221,221);
    padding: .5em; 
    margin: 1em; 
    border: 1px rosybrown dashed;
    image-rendering: pixelated;
}