@import url('https://fonts.googleapis.com/css2?family=Charm&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Charm&family=Niramit:wght@300&display=swap');
* {
    box-sizing: border-box;
}

body {
    font-family: 'Charm', cursive;
    margin: 0;
    font-family: Arial;
    background-color: rgb(250, 200, 35);
}

.header img {
    text-align: center;
    padding: 25px;
    width: 100%;
}

.header {
    text-align: center;
    padding: 25px;
}

.header h1 {
    text-align: center;
    color: #5b4007;
            text-shadow: 2px 2px 8px #fff;
    font-family: 'Charm', cursive;
}

.row {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
}


/* Create four equal columns that sits next to each other */

.column {
    -ms-flex: 25%;
    /* IE10 */
    flex: 25%;
    max-width: 50%;
}

.column img {
    vertical-align: middle;
    width: 100%;
    padding: 10px;
}

.column label {
    font-family: 'Charm', cursive;
    font-family: 'Niramit', sans-serif;
}

.column form {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    padding: 0px 50px 75px 100px;
}

input[type=text],
select,
textarea {
    font-family: 'Charm', cursive;
    font-family: 'Niramit', sans-serif;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    margin-left: 5px 5px;
}

.submit {
    text-align: center;
    padding: 10px;
}

.button {
    font-family: 'Niramit', sans-serif;
    text-align: center;
    background-color: #fff;
    color: #111111;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button:hover {
    font-family: 'Niramit', sans-serif;
    text-align: center;
    background-color: #5b4007;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
}

.show {
    text-align: center;
    padding: 25px;
}

.show label {
    padding: 10px;
    font-family: 'Niramit', sans-serif;
}

.show_number {
    font-family: 'Charm', cursive;
    font-family: 'Niramit', sans-serif;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    margin: 5px 5px;
}

a:hover {
    background-color: yellow;
}

footer {
    text-align: center;
    padding: 3px;
    background-color: rgb(255, 255, 255);
}


/* Responsive layout - makes a two column-layout instead of four columns */

@media screen and (max-width: 800px) {
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
}


/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 600px) {
    .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
}