:root {
    --body-bg: #1e1e1e;
    --content-bg: #242428;
    --main-color: #a7ff71;
    --text-color: #e1e1e1;
    --black: #000;
    --white: #fff;
}

body {
    margin: 0;
    padding: 100px;
    background-color: var(--body-bg);
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--text-color);
}

header {
    padding: 30px 0;
}

footer {
	text-align: center;
	padding: 30px 0 0;
}

h1,
h2,
h3,
h4 {
    font-family: "Poppins", sans-serif;
    color: var(--white);
}

h1 {
    font-weight: 700;
    font-size: 28px;
}

h2 {
    font-weight: 600;
    font-size: 24px;
}

h3 {
    font-weight: 500;
    font-size: 22px;
}

strong {
    color: var(--main-color);
}

li {
	margin-bottom: 10px;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--main-color);
}

.container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.align-center {
    display: block;
    margin: auto;
}

.body-inner {
    background-color: var(--content-bg);
    padding: 50px;
    border-radius: 10px;
}

/* CSS */
.button-29 {
    align-items: center;
    appearance: none;
    background-image: radial-gradient(100% 100% at 100% 0, var(--main-color) 0, #548536 100%);
    border: 0;
    border-radius: 50px;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, rgba(58, 65, 111, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    height: 48px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 32px;
    padding-right: 32px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 18px;
    margin-bottom: 50px;
}

.button-29:focus {
    box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
}

.button-29:hover {
    box-shadow: rgb(172 197 250 / 40%) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #225305 0 -3px 0 inset;
    transform: translateY(-2px);
}

.button-29:active {
    box-shadow: #3c4fe0 0 3px 7px inset;
    transform: translateY(2px);
}

table {
    border-collapse: collapse;
}

th, td {
    border: 1px solid;
    padding: 5px 10px;
}

@media screen and (max-width: 768px) {
    body {
        padding: 50px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    .body-inner {
        padding: 30px;
    }
}

@media screen and (max-width: 430px) {
    body {
        padding: 0px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    .body-inner {
        padding: 15px;
    }
}