html {
    line-height: 1.15; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/* Remove the margin in all browsers (opinionated). */
body {
    margin: 0;
}

/* 1. Remove the gray background on active links in IE 10. */
/* 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */
a {
    background-color: transparent; /* 1 */
    -webkit-text-decoration-skip: objects; /* 2 */
}

/* Prevent the duplicate application of `bolder` by the next rule in Safari 6. */
b,
strong {
    font-weight: inherit;
}

/* Remove the border on images inside links in IE 10-. */
img {
    border-style: none;
}

/* Hide the overflow in IE. */
svg:not(:root) {
    overflow: hidden;
}

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400');

html {
    min-height: 100%;
}
body {
    min-height: 100%;
    min-width: 300px;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #ffffff;
    background: #000000;
    font-size: 16px;
    line-height: 22px;
}
.page {
    border: 3px solid #f088b6;
    width: calc(100% - 126px);
    height: calc(100vh - 126px);
    margin: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content {
    position: relative;
    max-width: 300px;
}
.logo, .logo img {
    width: 100%;
    height: auto;
}
address {
    font-style: normal;
    text-align: center;
    margin: 20px 0;
    line-height: 26px;
}
.opening-times {
    width: 100%;
    display: flex;
    justify-content: center;
}
.opening-times table td {
    padding: 0 10px;
}
.opening-times table tr td:first-child {
    text-align: right;
}
.contact {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}
.contact a {
    color: #fff;
    text-decoration: none;
}
.contact a:hover {
	color: #f088b6;
}
.social-media-bar {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.social-media-bar a {
	display: block;
	padding: 0 10px;
}
.social-media-bar img {
	transition: all ease-in-out 0.25s;
	-webkit-filter: invert(100%); /* safari 6.0 - 9.0 */
	filter: invert(100%);
}
.social-media-bar a:hover img{
	-webkit-filter: invert(70%); /* safari 6.0 - 9.0 */
	filter: invert(70%);
}