@charset "UTF-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}

html {
    min-height: 100%;
    font-family: 'Lato', sans-serif;
}

body {
    min-height: 100%;
    /*background: url(../_img/Background.jpg) no-repeat fixed;
    background-position: top center;
    background-size: cover;*/
    background: rgb(56,180,232);
background: radial-gradient(circle, rgba(56,180,232,1) 25%, rgba(32,111,144,1) 100%);
    display: flex;
    flex-direction: column;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainContainer {
    width: auto;
    background-color: rgba(255,255,255,1);
    border-radius: 10px;
    border: 3px solid #000;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 60px 20px rgba(0,0,0,.1);
    padding: 20px;
    margin: 60px 0px;
    position: relative;
}

.mainContainerLogin {
    width: 100%;
    background-color: rgba(255,255,255,1);
    border-radius: 10px;
    border: 3px solid #000;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 60px 20px rgba(0,0,0,.1);
    padding: 20px;
    margin: 60px;
    position: relative;
}

.mainContainer img {
    width: 50%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 20px auto;
    padding: 20px;
}

.mainContainerLogin img {
    width: 50%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 20px auto;
    padding: 20px;
}

h1 {
    text-align: center;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 40px;
}

.blockContainer {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
}

.block {
    color: #000;
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.block h2 {
    font-size: 24px;
    font-weight: 900;
}

.number {
    font-size: 42px;
    font-weight: 900;
}

/*.larger {
    font-size: 52px;
}*/

.number::first-letter {
    font-size: 24px;
    vertical-align: top;
}

.block p {
    font-size: 16px;
}

.wide {
    width: 250px;
}

.flexHorizontal {
    display: flex;
    flex-direction: row;
}

.infoContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 20px;
    box-sizing: border-box;
}

.infoContainer hr {
    background: #000;
    height: 1px;
    width: 80%;
}

.infoContainer div {
    text-align: center;
    line-height: 24px;
    font-size: 18px;
}

/*.infoContainer div:last-of-type {
    margin-top: 40px;
}*/

.infoContainer div h3 {
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 10px;
}

.login {
    background-color: #f8991c;
    text-align: center;
    padding: 10px;
    position: absolute;
    top: -42px;
    right: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 3px solid #000;
    border-bottom: 0;
    color: #000;
}

.login a {
    text-decoration: none;
}

iframe {
    min-width: 800px;
    height: 760px;
}

@media all and (max-width: 660px){

    
    html, body {
        max-width: 100vw;
        height: 100vh;
    }
    
    main {
        align-items: flex-start;
        width: 100%;
    }
    
    .mainContainer {
        width: 100%;
        margin: 0;
        padding: 40px 0 0;
        border-radius: 0;
        border: 0;
    }
    
    .mainContainer img {
        width: 70%;
    }
    
    .blockContainer {
        flex-direction: column;
        padding: 0;
        margin: 40px 0;
        flex-shrink: 1;
    }
    
    .block {
        width: 100%;
        padding: 0 0;
        flex-shrink: 1;
    }
    
    .wide {
        width:100%;
    }
    
    .space {
        position: absolute;
        visibility: hidden;
    }
    
    .flexHorizontal {

        width: 100%;
    }
    
    .infoContainer {
        flex-direction: column;
    }
    
    .infoContainer div {
        margin: 30px 0px;
        line-height: 2.5em;
        font-size: 1.35em;
    }
    
    .infoContainer div h3 {
        font-size: 2em;
    }
    
    .infoContainer hr {
        width: 70%;
    }
    
    .login {
        top: 0;
        right: 0;
        border-radius: 0;
        border: 0;
        padding: 15px;
    }
    
    iframe {
        display: block;
    min-width: 0;
    max-width: 100vw;
    min-height: 100%;
}

}
