/*html,
body {
	background-color: #000;
	height: 100%;
}*/

*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: space-around;
    min-height: 100vh;
}

p {
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.6;
    padding: 10px;
    background-color: rgba(0,0,0,0.625);
    color: white;
}

a {
	color: orange;
}

img {
	width: 200px;
	display: block;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

@media only screen and (min-width: 1280px) {
    img {
        width: 300px;
    }
}

@media only screen and (min-width: 1600px) {
    img {
        width: 400px;
    }
}

@media only screen and (max-width: 600px) {
    img {
        width: 75%;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 600px) and (orientation: landscape) {
    img {
        width: 33.333%;
        margin-top: 0.25rem;
        margin-bottom: 0.75rem;
    }
}
