html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: monospace;
    color: #0f0;
    background: radial-gradient(circle, rgb(0, 68, 0), black);
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background-color: rgb(36, 51, 36);
    border-radius: 10px;
    border: 3px solid #000;
}

.intro {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.panel {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.panel img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.mine {
    margin-top: 1%;
    min-height: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.mine h1 {
    margin-top: 20px;
    display: block;
    align-items: unset;
    justify-content: unset;
}

h1, h2 {
    margin: 0.5em 0;
}
p {
    margin: 0.5em 0;
}
