section {
    display: flex;
    justify-content: center;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    margin-top: 10vh;
}

table {
    font-size: 24px;
    align-self: center;
}

table td {
    padding: 10px 10px;
}

table th {
    padding: 10px 10px;
}

.total-sum-cell {
    text-align: center;
    display: block;
}

.part {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.complete {
    width: 50%;
    background-color: rgb(190, 137, 39); 
    border: none;
    color: white;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    cursor: pointer;
}

.complete:hover {
    background-color: rgb(155, 111, 31);; 
}



.submit {
    text-align: center;
    transform: translateY(100%);
}

.table-row {
    height: 100px;
}
img {
    width: 200px;
    height: auto;
}

b {
    font-size: 28px;
}

form {
    margin: 10px 12%;
    margin-top: 100px;
    background-color: rgb(236, 178, 70);
    padding: 20px;
}

@media screen and (max-width:768px){
    section {
        flex-direction: column;
    }
    

    img {
        width: 100%;
        height: auto;
    }

}