@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

@font-face {
    font-family: 'Omori One';
    src:url(fonts/omori1.ttf); /* Normal */
}

@font-face {
    font-family: 'Omori Two';
    src:url(fonts/omori2.ttf); /* Scary(?) */
}

@font-face {
    font-family: 'Dogica';
    src:url(fonts/dogica.ttf);
}

body {
    background-color: #000000;
    background-image: url(laptopbg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: contain;
    font-family: 'Omori One';
    font-size: 28px;
    color: #fff;
}

p {
    margin: 0;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover{
    color: #808080;
    transition: .3s;
}

hr {
    margin: 20px 0;
}

/*-----SCROLLBAR-----*/
::-webkit-scrollbar {
    border-left: 1px solid #ffffff;
    background-color: #000000;
    width: 10px;
}

::-webkit-scrollbar-thumb{
    border-left: 1px solid #ffffff;
    border-right: 1px solid #000000;
    background-color: #ffffff;
}
    
::-webkit-scrollbar-thumb:hover {
    background-color: #cccccc;
}

::-webkit-scrollbar-track {
    border-left: 1px solid #ffffff;
    background-color: #000000;
    margin: 1px;
}

/* Buttons */
::-webkit-scrollbar-button:single-button {
    background-color: #000000;
    display: block;
    border-style: solid;
    height: 9px;
    width: 12px;
}

/* Up */
::-webkit-scrollbar-button:single-button:vertical:decrement {
    border-width: 5px 5px 5px;
    border-color: transparent transparent #ffffff transparent;
}

::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
    border-color: transparent transparent #cccccc transparent;
}
    
/* Down */
::-webkit-scrollbar-button:single-button:vertical:increment {
    border-width: 5px 5px 0 5px;
    border-color: #ffffff transparent transparent transparent;
}

::-webkit-scrollbar-button:vertical:single-button:increment:hover {
    border-color: #cccccc transparent transparent transparent;
}
/*-----END OF SCROLLBAR-----*/

#window {
    margin: 20px auto;
    width: 844px;
    height: 562px;
    background-color: #000000;
    border: 5px solid #ffffff;
    outline: 3px solid #000000;
    padding: 0;
}

#upper {
    margin: 0;
    width: 844px;
    height: 45px;
    border-bottom: 1px solid #ffffff;
    padding: 0;
    line-height: 0;
}

#title {
    margin: 0;
    border-spacing: 6px;
}

#title th {
    border: 1px solid #ffffff;
    padding: 15px 0;
    font-weight: 400;
}

#title th:first-child {
    padding-left: 5px;
    padding-right: 649px;
}

#title th:last-child {
    font-family: 'Press Start 2P';
    font-size: 25px;
    text-align: center;
    padding: 3px 2px 0 5px;
    transition: 0.3s;
}

#title th:last-child:hover {
    background-color: #ff0000;
}

.entries {
    padding: 20px 40px;
    overflow-y: auto;
    width: 764px;
    height: 476px;
}

.day {
    margin: 0 0 5px;
}

.date {
    margin: 0 0 5px;
    font-size: 18px;
}

.thoughts {
    margin: 0;
    font-size: 22px;
    text-indent: 40px;
}