* {
    box-sizing: border-box;
    font-family: 'Fredoka';
    margin: 0;
    padding: 0;
}

main {
    position: fixed;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    /* background-color: rgba(115, 8, 255, 0.292) */
}


article {
    position: relative;
    max-height: 900px;
    max-width: 600px;
    width: 100%;
    height: 100%;
    /* box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.2); */
    background-color: white;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow: hidden;
}

aside {
    width: 100%;
    background-color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
    padding: 10px;
}

section {
    padding: 50px 16px 20px 16px;
    overflow: auto;
    max-height: 100%;
    max-height: calc(100% - 60px);
}

p {
    margin-bottom: 10px;
    font-size: 19px;
}

section::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

section::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0);
}

article:hover section::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

@media (pointer: fine) {
    article:hover section::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.1);
    }
}

section h1, section h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
}

aside button {
    float: right;
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    border-radius: 6px;
    background-color: rgb(115, 8, 255);
    font-weight: bold;
    color: white
}

img {
    display: block;
    width: 100%;
    margin-bottom: 12px;
}