@font-face {
    font-family: 'Mon Reg';
    src: url(/fonts/Montserrat-Medium.ttf);
}
@font-face {
    font-family: 'Mon Bold';
    src: url(/fonts/Montserrat-SemiBold.ttf);
}
@font-face {
    font-family: 'Open';
    src: url(/fonts/OpenSans-Medium.ttf);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 87.5%;
}

body {
    font-family: 'Mon Reg';
    overflow: hidden;
}

h1, h2, h3, h4, h5, label, p, input, textarea, button, a {
    font-family: inherit;
}

a {
    text-decoration: none;
}

textarea {
    resize: none;
}

input,
select,
textarea,
button {
    font-size: inherit;
    padding: 3px 4px;
    outline-color: #11011d;
    color: #11011d;
}
table {
    width: 100%;
    border-collapse: collapse;
}

table thead,
table tfoot {
    background-color: #59715a;
}

table th {
    color: white;
    padding: 8px 4px 8px 0;
}

table td {
    padding: 8px;
}

table,
th,
td {
    border: solid 1px #ddd;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

.myButton {
    padding: 7px 18px;
    outline: none;
    background-color: white;
    border: solid 1px #3E8E41;
    color: #11011d;
    cursor: pointer;
    font-size: inherit;
    
}


.myButton.main2 {
    border-radius: 1rem;
}

.myButton.main {
    border-radius: 2rem;
    width: 176px;
    display: block;
    text-align: center;
}

.myButton:hover {
    background-color: #fff;
}

.myButton.aktif {
    background-color: #3E8E41;
    color: white;
}

.myButton:disabled {
    background-color: #59715a;
    color: white;
    border-color: #59715a;
}