:root {
    --primary-color: rgba(140, 140, 148, 0.65);
    --overlay-color: rgba(108, 108, 108, 0.95);
    --menu-speed: 0.75s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', serif;
    line-height: 1.4;
}

.container {
    max-width: 960px;
    margin: auto;
    overflow: hidden;
    padding: 0 3rem;
}

.showcase {
    background-color: var(--primary-color);
    color: #fff;
    height: 100vh;
    position: relative;
}

.showcase:before {
    content:'';
    background: url('/assets/ui/img/bg_wp-iceland-reynisfjara_3840x2160.jpg') no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.showcase .showcase-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  /*text-align: center;*/
    height: 100%;
  /*border: 1px solid #ccc;*/
}

#greeting > p {
    font-size: 5rem;
    text-shadow: 1px 1px 4px black;
}

.logo-container {
    margin-top: 0.5rem;
    padding-left: 88px;
    background: url('/assets/ui/img/logo.png') no-repeat left 0px top 7px;
    background-size: 72px 72px;
}

#sitetitle > p {
    font-size: 2.5rem;
    text-shadow: 1px 1px 4px black;
}

#datetime > p {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.25rem;
    color: #afafaf;
    text-shadow: 1px 1px 4px black;
}

footer {
    padding: 4px 8px;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 0.75rem;
    text-align: right;
}

footer a {
    padding-left: 20px;
    color: #c0c0c0;
    text-decoration: none;
    background: url('/assets/ui/img/flag_iceland.png') no-repeat left 0px top 0px;
    background-size: 16px 16px;
}

footer a:hover {
    color: #eee;
}

@media screen and (max-width: 1023px), screen and (max-height: 767px) {
    footer {
        display: none;
        visibility: hidden;
    }
}
