body
{
    background-color: #0E0E0E;
    color: white;
    font-family: Consolas;
    margin: 0;
    padding: 20px;
}
.highlight
{
    color: red;
}
ul {
    list-style-position: inside;
    padding-left: 0;
}
header
{
    text-align: center;
    padding: 20px 0;
}
.purchased-token-information
{
    color: rgb(0, 255, 0);
}

section
{
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #FF0000;
    border-radius: 8px;
}
.scroll-section
{
    all: unset;
    display: block;
}
h2
{
    color: #FF0000;
}
p
{
    line-height: 1.6;
}
.container
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.header
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.header a
{
    color: #FF0000;
    text-decoration: none;
    font-size: 18px;
    margin-right: 10px;
}
.logo
{
    max-width: 25%;
    height: auto;
    margin: 20px 0;
}
.portal-button
{
    font-family: Consolas;
    background-color: rgb(199, 0, 0);
    color: white;
    border: none;
    height: auto;
    width: 300px;
    padding: 12px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.portal-button:hover
{
    background-color: red;
    transform: scale(1.05);
}
.check-button
{
    font-family: Consolas;
    background-color: rgb(199, 0, 0);
    color: white;
    border: none;
    width: 33px;
    height: 33px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.check-button:hover
{
    background-color: red;
    transform: scale(1.05);
}
textarea
{
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow: hidden;
    resize: none;
    width: 300px;
    min-width: fit-content;
    text-align: center;
    vertical-align: middle;
    line-height: 2em;
    outline: none;
}
.key-input-area
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
}