/* 
Reset Stylesheet
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

body{
    width: 100vw;
    height: 100vh;
    font-size: 17px;
    display: flex;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.wrapper{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../images/underconstruction.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
}
a.contentbox{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    min-width: 50%;
    max-width: 90%;
    height: auto;
    background: rgba(255,255,255,0.7);
    border: 1px solid #0B66A3;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    color: #000;
    padding: 2rem;
}

.title{
    font-family: 'Caflisch Script Pro';
    font-size: 6rem;
    color: #0B66A3;
    text-align: center;
   
}

h1{
    font-family: 'Caflisch Script Pro';
    font-size: 3rem;
    color: #0B66A3;
    text-align: center;
    padding: 1rem;
}

p{
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;;
}

a{
    color: #000;
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}

.contentbox  a{
    text-decoration: none;
    color: #0B66A3;
}
.contentbox > a:hover{

    color: #000;
    text-decoration: none;
    text-shadow: rgba(0,0,0,0.7);

} 

@media screen and (max-width: 992px) {

    .contentbox{
        width: 90%;
    }

}