:root {
    --white: #f6f6f6;
    --greenOp: hsla(154, 93%, 48%, 0.525);
    --yellowOp: hsl(51, 100%, 65%, 0.525);
    --yellow: hsl(51, 100%, 65%);
    --red: hsl(0, 100%, 65%);
    --redOp: hsla(0, 93%, 62%, 0.438);
    --green: #08ec89;
    --fGreen: invert(40%) sepia(30%) saturate(9000%) hue-rotate(123deg) brightness(150%) contrast(90%);
    --fGrey: invert(80%) sepia(90%) saturate(0%) hue-rotate(123deg) brightness(10%) contrast(90%);
    --grey2: #2c2c2c;
    --grey: #161616;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui;
    color: var(--white);
    margin: 5rem;
    background-color: var(--black);
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #161616;
    box-shadow: 0 0 10px rgba(182, 182, 182, 0.1);
}

a {
    color: #08ec89;
    font-weight: 600;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    margin-top: 20px;
}

p {
    font-size: 16px;
    margin-bottom: 10px;
}

ul {
    counter-reset: section;
    list-style-type: none;
    margin-left: 30px;
}

li {
    font-weight: 900;
}

li:before {
    counter-increment: section;
    content: counter(section) ". ";
    font-weight: bold;
}

.panding {
    display: flex;
    justify-content: center;
    padding: .2rem .5rem;
    margin: -.5rem 0 1rem 0;
    border-radius: 10px;
    border: 1px solid var(--yellow);
    background-color: var(--yellowOp);
}

.succss {
    display: flex;
    justify-content: center;
    padding: .2rem .5rem;
    margin: -.5rem 0 1rem 0;
    border-radius: 10px;
    border: 1px solid var(--green);
    background-color: var(--greenOp);
}

.failed {
    display: flex;
    justify-content: center;
    padding: .2rem .5rem;
    margin: -.5rem 0 1rem 0;
    border-radius: 10px;
    border: 1px solid var(--red);
    background-color: var(--redOp);
}