html {
    background-color: #2F4F4F
}

body {
    background-color: #FFFaFa;
    font-family: Verdana, Helvetica, sans-serif;
    color: black;
    margin: 80px;

}

h1 {
    text-transform: uppercase;
    font-size: 40px;
    color: #696969;
    font-weight: normal;
}

h2 {
    text-transform: uppercase;
    font-size: 20px;
    color: #696969;
    font-weight: normal;
}

h3 {
    font-size: 18px;
    color: black;
    font-weight: bold;
}

h4 {
    font-size: 16px;
    color: black;
    font-weight: bold;
}


p {
    font-size: 15px;
}

hr {
    border-top: 1px solid #696969;
}


a:link {
    color: black;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: black;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: black;
    text-decoration: none;
}

/* selected link */
a:active {
    color: black;
    text-decoration: none;
}

.content {
    padding: 30px;
}

.center {
    text-align: center;
}

.button {
    background-color: #696969;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
}

.button a {
    float: left;
    display: block;
    color: #FFFaFa;
    text-align: center;
    text-decoration: none;
}

.responsive {
    width: 100%;
    height: auto;
}

/*********************************************************************************************
Kacheln
*********************************************************************************************/

.tapwrap {
    display: table;
    table-layout: fixed;
    width: 96%;
    margin: 0px auto;
    text-align: center;
    border-collapse: separate;
    border-spacing: 20px;

}

.taprow {
    display: table-row;
    width: 100%;

}

.tap {
    display: table-cell;
    border: 1px solid #a6a6a6;
    background-color: #fff;
    padding: 5px;
    overflow: hidden;
    position: relative;

}


/*********************************************************************************************
Navigation
*********************************************************************************************/

.topnav {
    overflow: hidden;
    background-color: #696969;
    font-size: 20px;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #FFFaFa;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: 0.3s ease-in-out all;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #FFFaFa;
    color: black;
}

/* Footer */
.footer {
    background-color: #696969;
    color: #FFFaFa;
    padding: 10px;
    margin-top: 10px
}


/*********************************************************************************************
Tabelle
*********************************************************************************************/
table {
    border-collapse: collapse;
    border: none;
    margin-bottom: 20px;
}

th {
    border: 3px solid #dddddd;
    text-align: center;
    vertical-align: text-top;
    padding: 20px;
}

td {
    border: 3px solid #dddddd;
    text-align: center;
    padding: 20px;
}


/************************************************+++****************************************
Two Column
*******************************************************************************************/

* {
    box-sizing: border-box;
}

.two-row {
    display: flex;
}

/* Create two equal columns that sits next to each other */
.two-column {
    flex: 50%;
    padding: 10px;
}


/************************************************+++****************************************
Three Column
*******************************************************************************************/

* {
    box-sizing: border-box;
}

.three-row {
    display: flex;
}

/* Create three equal columns that sits next to each other */
.three-column {
    flex: 25%;
    padding: 10px;
}
