<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root{
    --background-color : whitesmoke;
    --background-gray : rgb(50, 50, 50 , 0.7);
    --tem-color : rgb(75, 76, 84);
    --tem-light-green: #00b96f;
}

body{
    color: var(--tem-color);
}


.main-holder{

    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.papers-header-holder{
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

}

.papers-holder{

    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 10px;
}

.paper-component{
    position: relative;

    box-sizing: border-box;
    width: 80%;
    max-height: 500px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;

    border: solid 0px none;
    border-radius: 20px;

    box-shadow: 0px 0px 10px gray;
}

.paper-text-holder{

    box-sizing: border-box;
    width: 100%;

    display: flex;
    flex-direction: column;

    padding: 0px 30px;
    text-align: justify;

    padding-bottom: 20px;

}

.paper-text-holder img {
    max-width: 700px;
}

.paper-bottom-holder {
    position: absolute;
    bottom: 0px;
    z-index: 2;

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: var(--light-gray);

    cursor: pointer;
}

.paper-bottom-holder:hover{
    color: var(--background-color);
}
</pre></body></html>