@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/*Reset CSS*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*End Reset*/

body {
    font-family: 'Open Sans', sans-serif;
}

.logo {
    display: block;
    margin: 0 auto;
    padding: 25px 0;
    max-width: 10%;
}

.maint-hero {
    background-image: url("maint-hero.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.text-box {
    background: rgba(255, 255, 255, 0.92);
    box-sizing: border-box;
    max-width: 735px;
    max-height: 250px;
    margin-top: 63px;
    padding: 35px;
    text-align: center;
}

h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 47px;
    color: #00B0B9;
    margin-bottom: 20px;
}

p {
    font-size: 22px;
    line-height: 30px;
    color: #000D14;
}

strong {
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
    color: #000D14;
}

a {
    font-size: 22px;
    font-weight: bold;
    text-decoration: underline;
    line-height: 30px;
    color: #000D14;
}

@media screen and (max-width: 767px) {
    .logo {
        max-width: 280px;
    }

    .text-box {
        max-width: 345px;
        max-height: 400px;
        padding: 20px;
    }
}

