/* Variables */
:root {
    --button-color: rgb(101, 37, 179);
    --button-hilit: rgb(135, 80, 199);
}

/* Main structures */

html {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: rgb(241, 230, 253);
    background-color: rgb(42, 26, 57);
}

/* Headers */

h1 {
    font-size: 20px;
    font-weight: 400;
    margin: 32px;
}

.biglogo {
    position: relative;
    margin: 0 auto;
    width: 155px;
    height: 155px;
    background-size: contain;
    background-repeat: no-repeat;
}

h1 span {
    font-size: 12px;
}

h2 {
    width: 80%;
    margin: 1em auto;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
}

/* Main */

.main {
    margin-top: -40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;    
}

.main a, .main a:visited {
    color: white;
    /* text-decoration: none; */
}

/* Effects */

.backlight::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    background: inherit;
    filter: blur(20px) brightness(110%);
    transform: scale(1.0);
    z-index: -1;
    transition: transform 1.5s ease;
}

.backlight:hover::after {
    transform: scale(1.1);
}

/* Paper page */

.paper {
    color: #222;
    background-color: white;
    width: calc(100% - 4em);
    max-width: 1000px;
    min-height: 100%;
    padding: 2em;
    margin: 2em auto 0 auto;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px; 
}

.paper li {
    margin: 1em 0;
    line-height: 1.5em;
}

.paper p {
    line-height: 1.5em;
}