#goto {
    margin: 30px 0;
    display: inline-block;
}

#goto button {
    font-family: "Poppins", sans-serif;
}

.button-82-pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-82-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition:
        transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.button-82-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(to left,
        hsl(340deg 100% 16%) 0%,
        hsl(340deg 100% 32%) 8%,
        hsl(340deg 100% 32%) 92%,
        hsl(340deg 100% 16%) 100%);
}

.button-82-front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    background: hsl(345deg 100% 47%);
    will-change: transform;
    transform: translateY(-4px);
    transition:
        transform 600ms cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
    .button-82-front {
        font-size: 1.25rem;
        padding: 10px 35px;
    }
}

.button-82-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

.button-82-pushable:hover .button-82-front {
    transform: translateY(-6px);
    transition:
        transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.button-82-pushable:hover .button-82-shadow {
    transform: translateY(4px);
    transition:
        transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.button-82-pushable:focus:not(:focus-visible) {
    outline: none;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.container {
    max-width: 1200px;
    margin: auto;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
}

body {
    font: 16px/20px "Open Sans", Arial, Helvetica, sans-serif;
    line-height: normal;
    padding-top: 11px;
    color: #2a2a2a;
    font-weight: 400;
    background: #d5d5d5 url(../images/bg.jpg) center top fixed no-repeat;
    background-size: 100% auto
}

header {
    position: relative;
    background-color: #000;
    padding-top: 5px;
    padding-bottom: 30px;
    text-align: center;
    color: #e7e7e7;
}

header .logo-wrap {
    background-color: rgb(255 255 255 / 25%);
}

header .detail-wrap {
    padding: 15px;
}

.slogan {
    color: #ffff00;
    margin-top: 30px;
}

#logo {}

#logo img {}

main {
    background-color: #f2f2f2;
    padding: 15px;
    box-sizing: border-box;
}


h1 {
    font-weight: 700;
    font-size: 28px;
    margin: 5px 0 25px;
    text-align: center;
}

h2 {
    font-weight: 600;
    font-size: 24px;
    margin: 5px 0 20px;
    position: relative;
}

h2:after {
    left: -25px;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    border-color: rgba(204, 51, 0, 0);
    border-left-color: #d90000;
    border-width: 20px;
    margin-top: -20px
}

h3 {
    font-weight: 500;
    font-size: 22px;
    margin: 5px 0 15px;
}

p {
    margin-top: 0;
    margin-bottom: 20px;
}

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

.decor {
    position: relative
}

.decor:after {
    left: 0;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    border-color: rgba(204, 51, 0, 0);
    border-left-color: #d90000;
    border-width: 20px;
    margin-top: -20px
}

article {
    padding: 15px 40px;
}

footer {
    padding: 15px 40px;
    box-sizing: border-box;
    background-color: #000;
    color: #e7e7e7;
    text-align: center;
}

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

table {
    border-collapse: collapse;
    text-align: left;
    margin-bottom: 30px;
}

td {
    padding: 10px;
    border: 1px solid #717171;
}

th {
    padding: 10px;
    background-color: #d1d1d1;
    border: 1px solid #717171;
}