/* CSS Mini Reset */

html, body, div, form, fieldset, legend, label {
 margin: 0;
 padding: 0; 
}

table {
 border-collapse: collapse;
 border-spacing: 0;
}

th, td {
 text-align: left;
 vertical-align: top;
}

h1, h2, h3, h4, h5, h6, th, td, caption { font-weight:normal; }

img {
    display: block;
    border: 0;
    margin: 0 auto;
}

figure {
    margin: 0;
}

/* Minimal */

html {
    font-size: 14px;
    line-height: 1.3;
    background-color: black;
}

main {
    max-width: 32em;
    margin: 1em auto;
}

/* Slideshow container */
.slideshow-container {
    max-width: 32em;
    margin: auto;
}

.page {
    position: relative;
    background-color: #f5f4f0;
    background-image: url("./background.gif");
    border-radius: 25px;
    overflow: hidden;
    width: 360px;
    height: 550px;
    margin: 5px auto;
}

@media print {
    .page {
	border-radius: 0px;
	background-image: none;
	background-color: white;
	border: 1px solid gray;
    }

    html {
	background-color: white;
    }

    .navigation-button {
	visibility: hidden;
    }

    a {
	text-decoration: none;
	color: black;
    }
}

article {
    font-family: Courier, monospace;
    padding: 5px 0;
}

.image-top {
    width: 100%;
}

main p, h1, h2, figcaption {
    padding: 0 1em;
}

img {
    max-width: 100%;
}

h1 {
    text-align: center;
}

h2 {
    font-family: "Gill Sans", sans-serif;
    color: #d10700;
    font-size: 1.2em;
    text-transform: uppercase;
}

blockquote {
    font-style: italic;
}

footer {
    padding: 2em 0;
}

figcaption {
    font-family: sans-serif;
    color: gray;
    font-size: 0.8em;
    text-align: center;
}



/* Next & previous buttons */
.navigation {
    font-family: sans-serif;
    width: 360px;
    margin: 10px auto;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation-button {
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    color: black;
    user-select: none;
    height: 50px;
    line-height: 50px;
    width: 100px;
    background: gray;
    border-radius: 5px;
}

.navigation-button img {
b    display: inline-block;
    height: 30px;
}

.prev {
    float: left;
}

.next {
    background: #ffcc00;
    float: right;
}

.page-number {
    color: gray;
}

.big-next-button {
    text-align: center;
    font-family: sans-serif;
    line-height: 50px;
    display: block;
    width: 360px;
    height: 50px;
    margin: 10px auto;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
}

.centered {
    text-align: center;
}

.bottom {
    position: absolute;
    bottom: 10px;
}


/* Styles for computer screens */
@media screen and (min-width: 1024px) {

    .navigation {
	width: 470px;
    }

    html {
	font-size: 18px;
    }
    
    main {
	max-width: 720px;
    }
    
    .page {
	width: 470px;
	height: 720px;
    }
}
