@charset "UTF-8";

/**
**************************************************
*     _  __     _    _____ _            _        *
*    | |/ /    | |  / ____| |          | |       *
*    | ' / __ _| |_| |    | | ___   ___| | __    *
*    |  < / _` | __| |    | |/ _ \ / __| |/ /    *
*    | . \ (_| | |_| |____| | (_) | (__|   <     *
*    |_|\_\__,_|\__|\_____|_|\___/ \___|_|\_\    *
*                                                *
**************************************************


This file is part of the KatClock project, a simple JavaScript application show the current date 
and time in a standardized form used by NATO forces and emergency response services. For further
informations, please consult the README.md file in the root folder of this project.

Florian Meissner <florian.meissner1@volkswagen.de>
*/

/**
    Main CSS file.
*/

* {
	text-align: center;
	margin: 0;
}

html {
    font-family: sans-serif;
    font-size: 16px;
}

noscript {
	color: #ff0000;
	font-size: 5em;
	font-weight: bold;
	margin: 0;
}

noscript p {
	margin: 0.5em 1em;
}

section:first-child {
    margin-top: 0;
}

section:last-child {
    margin-bottom: 0;
}

.hidden {
	display: none;
}