*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #FFCB5C;

    line-height: 1.5;
    font-family: sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    margin: 5px 5px 5px 5px;
}

.main_card {
    background: #FFF1D0;
    max-width: 600px;
    width: 70%;
    border-radius: 12px;
    box-shadow:
            0 2px 4px rgba(0, 0, 0, 0.08),
            0 8px 24px rgba(0, 0, 0, 0.12);
    margin: 10px 0px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main_card_header {
    background-color: #FFFFFF;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_card_body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn {
    text-decoration: none;
    color: #000000;
    background: #FFA1F4;
    padding: 10px;
    margin: 10px 10px;

    border-radius: 12px;
    box-shadow:
            0 2px 4px rgba(0, 0, 0, 0.08),
            0 8px 24px rgba(0, 0, 0, 0.12);
}

table td {
    padding: 2px 15px;
}