body,
html {
    margin: 0;
    padding: 0;
}
/* 
div {
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul, ol {
    padding-left: 2em;
}

li {
    padding-left: .5em;
}

html {
    font-size: 11px;
}

body {
    background-color: #fef8ef;
    min-height: 100%;
    /* text-align: center; */
    display: flex;
    flex-direction: column;
}

p, li {
    font-size: 10pt;
}

table {
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
}


th {
    text-align: center;
}

/* table,
th,
td {
    border: 1px solid black;
} */

img {
    max-width: 100%;
    margin: auto;
}

button {
    margin: 4px;
}

.intro {
    padding: 10px 20px;
    max-width: 400px;
    margin: auto;
    color: rgb(161, 89, 89)
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
    padding-right: 20px;
}

.buttonGroup {
    padding-top: 20px;
}

.hidden {
    display: none;
}

/* Style the tab */
.tab {
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
    /* border: 1px solid #ccc; */
    background-color: #f5d7d7;
}

.tab p {
    padding: 0;
    margin: 1px;
}

/* Style the buttons that are used to open the tab content */
.tab td {
    user-select: none;
    background-color: inherit;
    margin: 0%;
    text-align: center;
    border-radius: 10px 10px 0px 0px;
    /* float: left; */
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0px 16px;
    transition: 0.3s;
    font-size: 12pt;
}

.tab table,
th {
    border: none;
}

/* Change background color of buttons on hover */
.tab td:hover {
    background-color: #f7bbbb;
}

/* Create an active/current tablink class */
.tab td.active {
    background-color: #f38787;
}

/* Style the tab content */
.tabcontent {
    /* background-color: #f5d7d7; */
    display: none;
    padding: 0px 12px;
    /* border: 1px solid #ccc; */
    border-top: none;
    animation: fadeEffect 1s;
    /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#logo {
    margin: auto;
}

#logo img {
    max-width: 400px;
    width: 100%;
}

.page {
    position: relative;
    min-height: 100vh;
}

.container {
    min-height: 50vw;
}