
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: repeat;

}

.section {
    max-width: 1000px;
    margin: auto;
}

.container {
    margin-top: 30px;
    margin-right: 50 px;
    margin-left: 50 px;
}

.home {
    text-align: center;
}

.home_headline {
    font-size: 30px;
    margin-bottom: 20px;
    color: white;
}

.intro {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: white;
}

.last_edit {
    color: white;
    font-size: 12px;
    margin-bottom: 20px;
}


.column {
    float: left;
    width: 50%;
    padding: 10 10px;
}

@media screen and (max-width: 800px) {
    .column {
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }
}

.row {
    margin: 0 -5px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}


.card {
    box-shadow: 2px 2px #808080;
    padding: 16px;
    text-align: center;
    background-color: #fbfbfb;
    margin: 6px;
    border: solid;
    border-width: 3px;
    border-color: orange;
    border-radius: 10px;
    transition: 0.7s;
}

.card:hover {
    background-color: rgb(255, 246, 229);
    box-shadow: 4px 4px #808080;
    transform: translate(-2px, -2px)
}

.placeholder {
    box-shadow: 2px 2px #808080;
    padding: 16px;
    text-align: center;
    background-color: orange;
    color: white;
    border-radius: 10px;
    transition: 0.7s;
    margin-left: 5px;
    margin-right: 5px;
}

.placeholder:hover {
    box-shadow: 4px 4px #808080;
    transform: translate(-2px, -2px)
}


.column_var {
    float: left;
    width: 50%;
    padding: 10 10px;

}

.row_var {
    margin: 0 -5px;
}

.row_var:after {
    content: "";
    display: table;
    clear: both;
}


.card_var {
    box-shadow: 2px 2px #808080;
    padding: 16px;
    margin: 2px;
    text-align: center;
    background-color: orange;
    border-radius: 10px;
    color: white;
    transition: 0.3s;
}

.card_var:hover {
    box-shadow: 1px 1px #808080;
    transform: translate(1px, 1px);
}



.name {
    font-size: 18pt;
    margin-bottom: 8px;
    margin-top: 6px;
}

.id {
    color: orange;
    font-size: 12pt;
    font-family: monospace;
}

.time {
    color: orange;
    font-size: 10pt;
    margin-bottom: 16px;
    font-family: monospace;
}

.text {
    font-size: 12pt;
    margin-bottom: 4px;
}

.button {
    background-color: orange;
    box-shadow: 4px 4px grey;
    border: none;
    border-radius: 10px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14pt;
    margin: 4px 2px;
    cursor: pointer;
    transition: 0.3s;
    clear: left;
}

.button:hover {
    box-shadow: 0px 0px;
    background-color: rgb(60, 60, 255);
    transform: translate(4px, 4px);
}

.button:active {
    background-color: orange;
    box-shadow: inset 2px 2px grey;
    transform: translate(6px, 6px);
}

.button-container {
    margin-top: 20px;
}

.var {
    font-family: monospace;
    transition: 0.3s;
}

.var:hover {
    text-decoration: underline;
}

div.pic {
    margin-top: 20px;
    padding: 5px 5px;
}

img.pic {
    box-shadow: 0px 0px grey;
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: 0.7s;
}

img.pic:hover {
    box-shadow: 2px 2px grey;
    transform: translate(-2px, -2px);
}

.footer {
    color: white;
    font-size: 10pt;
    font-family: monospace;
    text-align: center;
}
