.inline {
    display: inline;
}

.poster {
    flex: 0 0 80%;
    background-image: url('../img/index_poster.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 80% 100%;
    height: 100%;
}

.nav {
    flex: 1;
    background-color: whitesmoke;
    height: 100%;
    box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 1);
}

.nav-items {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.nav-item:first-of-type{
    margin-top: 15px;
}

.nav-item {
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 30px;
    margin-right: 30px;
    
    /*background: white;
    box-shadow: 0 8px 8px 0 rgba(0,0,0,0.2);
    border-radius: 15px;*/

    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thumbnail{
    height: 200px;
    width: 250px;
    box-shadow: 0 8px 8px 0 rgba(0,0,0,0.2);
    border-radius: 15px;
}
/*
.nav-item:hover, .nav-item:active {
    box-shadow: 0 8px 8px 0 rgba(0,0,0,0.4);
}*/

/*
https://stackoverflow.com/questions/826782/how-to-disable-text-selection-highlighting
*/
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Opera and Firefox */
}

p{
    font-weight: bold;
    font-size: 20px;
    font-family: 'Franklin Gothic Medium';
}

a{
    text-decoration: none;
    color: black;
}

.swal2-title, .paper-list{
    font-family: 'Roboto', sans-serif !important;
}

.paper-list{
    list-style-type: none;
}

.paper-list li{
    margin: 40px 0;
}