@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

#root, html, body, .content, .app {
    font-family: "Source Sans Pro", sans-serif;
    background-color: #1A1F35;
}

.root {
    display: flex;
    flex-direction: column;
    height: 100dvh;
}

.textframe {
    margin-left: 10dvw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80%;
}

.imgframe {
    background-size: contain;
    background-position: center;
    height: 100vh;;
    max-width: 100%;
    background-repeat: no-repeat;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #e0e0e0;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}