body {
    margin: 0;
    padding: 0;
    border: 0;
    
    color: rgb(73, 85, 90);
    font-family: sans-serif;
}

.background {
    background: url("parcOverview.jpg");
    background-size: 100em;
}

form {
    margin: 0;
    padding: 0;
    border: 0;
}

form label {
    font-size: 14px;
}

form input {
    border-radius: 4px;
    border: 1px solid rgb(184, 207, 217);
    padding: 5px;
    font-size: 17px;
    transition: box-shadow 0.6s;
}

form input:focus {
    box-shadow: 1px 1px 20px rgb(0, 0, 0, 0.1);
}

form input[type="submit"] {
    background: rgb(66, 119, 43);
    padding: 6px 18px;
    color: white;
    border: none;
}

.centerBox {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.box {
    background: rgba(245, 249, 246, 0.95);
    padding: 20px;
    box-sizing: border-box;
    border-radius: 3px;
    box-shadow: 1px 1px 40px rgb(0, 0, 0, 0.34);
}

.boxHeader {
    font-size: 30px;
    margin-bottom: 20px;
}

.login {
    max-width: 400px;
    margin-top: 75px;
}

.login form input {
    margin-top: 5px;
    margin-bottom: 15px;
    width: 100%;
}

.login form input[type="submit"] {
    width: initial;
    margin-bottom: 5px;
}

.footer {
    color: white;
    
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.footer .logo {
    width: 50px;
}

.footer .contact {
    position: relative;
    bottom: 13px;
    font-size: 14px;
}

.footer a, .footer a:visited {
    color: white;
    text-decoration: none;
}

@media (max-width: 500px) {
    .footer .logo {
        margin: auto;
        margin-bottom: 10px;
        display: block;
    }
    
    .footer .contact {
        position: initial;
    }
}

.largePage {
    width: 100%;
    max-width: 1000px;
}

/* info block */
.infoBlock .dataRow {
    display: flex;
}

.infoBlock .smallData {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-left: 15px;
}

.infoBlock .infoBlockTitle {
    margin-bottom: 10px;
    font-size: 20px;
}

.infoBlock {
    min-width: 300px;
    margin-bottom: 40px;
}

.infoBlock .data {
    font-size: 60px;
}
.infoBlock .data span {
    font-size: 24px;
}

.infoBlockList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 750px;
}
