
/* Set font to give a computer game feel.*/
body, h1, 
h2, h3, 
h4, h5, 
h6, .h1, 
.h2, .h3, 
.h4, .h5, 
.h6 {

/* See: https://www.google.com/fonts/specimen/Press+Start+2P */
  font-family: 'Press Start 2P', "Lucida Console", Monaco, monospace;
}

/* Adjust size down to nearest multiple of 8 to suit font on mobile screen */
body {
  font-size: 8px;
}

/* Adjust size down to nearest multiple of 8 to suit font */
h1, .h1 {
    font-size: 32px;
}

/* Adjust size down to nearest multiple of 8 to suit font */
h2, .h2 {
    font-size: 24px;

    /* Added to take the edge of the glaring whiteness of the title */
    color: rgb(253, 153, 202);
}

/* Adjust size down to nearest multiple of 8 to suit font */
h3, .h3 {
    font-size: 16px;

    /* To take the edge of the bright whiteness of the artwork titles */
    color: rgb(253, 153, 202);
}


.navbar-brand {
    font-size: 16px;
}

/* Reduce font-size of titles in List of Artworks */
.view-content h3 {
  font-size: 16px;
}

/* Add some space above each title in the artwork list */
.artwork-title {
  padding-top: 10px;
}


/* Add some space between image and description */
.artwork-description {
  padding-top: 7px;
}


/* Increase the line height to make the paragraphs more readable */
p {
  line-height: 2;
}

/***
* START - Suppress the navbar toggle button
*/


.navbar-collapse.collapse {
display: block!important;
}

.navbar-nav>li, .navbar-nav {
float: left !important;
}

.navbar-nav.navbar-right:last-child {
margin-right: -15px !important;
}

.navbar-right {
float: right!important;
}

.navbar-toggle {
  display:none;
}


/*
* END - Suppress the navbar toggle button
*/

/* Force a bit of padding above the footer 
* to prevent the content from touching the bottom of the screen.
*/

footer {
  padding-top: 30px;  
}