@font-face {
    font-display: swap;
    font-family: 'Abel';
    font-style: normal;
    font-weight: 400;
    src: url('/resources/fonts/abel-v18-latin-regular.eot'); /* IE9 Compat Modes */
    src: url('/resources/fonts/abel-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/resources/fonts/abel-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('/resources/fonts/abel-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('/resources/fonts/abel-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('/resources/fonts/abel-v18-latin-regular.svg#Abel') format('svg'); /* Legacy iOS */
  }

:root {
    --main-white: rgb(253, 253, 253);
    --main-grey: rgb(40, 37, 37)
}

* {
    font-family: 'Abel', serif;
}
html, body {
    height: 100%;
    margin: 0;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    height: 1px;
    border: 0;
    background: linear-gradient(to right, black, white);
}

/* Content */
.content {
    display: flex;
    height: 100%;
}

/* Sidebar */
.sidebar {
    flex: 0 0 auto;
    width: 10%;
    height: 100%;
    background-color: var(--main-white);
}

.logo {
    width: 60px;
    margin: 25px;
}

/* Welcome Content */
.welcome {
    position: relative;
    flex: 0 0 50%;
    background-color: var(--main-white);
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.heading {
    font-size: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); 
}

.heading a {
    display: block;
}

.l1::before {
    margin-top: 50px;
    content: '';
    position: absolute;
    width: 190px;
    height: 2px;
    border-radius: 4px;
    background-color: var(--main-grey);
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.l2::before {
    margin-top: 50px;
    content: '';
    position: absolute;
    width: 145px;
    height: 2px;
    border-radius: 4px;
    background-color: var(--main-grey);
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.l3::before {
    margin-top: 50px;
    content: '';
    position: absolute;
    width: 128px;
    height: 2px;
    border-radius: 4px;
    background-color: var(--main-grey);
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.l4::before {
    margin-top: 40px;
    content: '';
    position: absolute;
    width: 170px;
    height: 2px;
    border-radius: 4px;
    background-color: var(--main-grey);
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.link:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.link {
    text-decoration: none;
    color: var(--main-grey);
    margin-top: 15px;
}

.l4 {
    font-size: 30px;
}

/* Thumbnail Container */
.thumbnail {
    position: relative;
    flex: 0 0 50%;
    display: flex;
    justify-content: center; 
    align-items: center; 
    background-color: black;
}

.thumbnail-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
}

.quote-container {
    position: absolute; 
    text-align: center; 
}

.quote {
    font-size: 40px;
    font-weight: bold;
    color: var(--main-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
}

.author {
    font-size: 30px;
    color: var(--main-white);
    margin-top: 5px; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}