:root {
    font-family: Courier New;
	font-size: 1.2rem;
    line-height: 1.4;
}

.stick {
    position: sticky;
    top: 0;
    text-align: center;
}
aside img {
    max-width: 65%;
    margin: 5px;
}

body {
    background-color: #303030;
	color: #f5f5f5;
}

a:link, a:visited {
	color: #f5f5f5;
}

details {
    margin-left: 20px;
    box-shadow: 0 0 10px inset #f5f5f5;
    padding: 15px;
    margin: 15px;
}
details > summary {
	list-style-image: url('../img/fan/icon.png');
	cursor: pointer;
}

.container {
	display: grid;
	grid-template-columns: 75% 25%;
}

/* styling for phones / screens under 600px */
@media screen and (max-width: 600px) {
	aside {
        display: none;
    }
    .container {
        display: block;
    }
}