@font-face {
    /* font-family: 'OneStory'; */
    /* src: url("/fonts/OneStory.otf") fomat('opentype'); */
    font-family: 'OneStory';
    src: url('/fonts/onestory.woff2') format('woff2'),
        url('/fonts/onestory.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Variables cos I'm lazy */
:root{
    --top-height: 100px;
    --left-width: 200px;
}

html {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
}

body{
    /* background-repeat: no-repeat; */
    min-height: 100vh;
    background-size: cover;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    font-family: OneStory;
    /* font-size: 20px; */
}

p{
    font-size: 20px;
}

ul{
    font-size: 20px;
}

img{
    width: 500px;
    display: block;
    margin: 0 auto;
}

pre {
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.05);
    /* font-size: 15px; */
} 

.page{
    display: flex;
    flex-direction: row;
    flex: 1;
    /* margin: 40px; */
    margin:0;
    padding: 0;
    background-image: linear-gradient(#F46036, #d7263d);
    
}

/* Left Section */

.left-container{
    display: flex;
    flex-direction: column;
    width: var(--left-width);
    margin: 0 0 0 15px;
}

.left-top{
    height: var(--top-height);
    margin-bottom: 100px;
}

.left-bot{

}

/* For each item in the left section, we will need a new box */
.left-bot-item{
    border: 4px solid #1b998b;
    border-radius: 20px;
    background-color: #f8f7e2;
    margin-bottom: 15px;
    box-shadow: 6px 6px 6px -6px;
    padding: 10px;
}

/* TODO - add sub box elements */

/* Right Section */

.right-container{
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 20px;
}

/* This Stores the heading and nav */
.right-top{
    display: flex;
    flex-direction: column;
    height: var(--top-height);
    align-items: center;
    border: 4px solid #1b998b;
    border-radius: 20px;
    background-color: #f8f7e2;
    margin-bottom: 50px;
    box-shadow: 6px 6px 6px -6px;
}

.right-top-header{}

.right-top-nav{}

/* Contains the main content */
.right-bot{
    flex:1;
    border: 4px solid #1b998b;
    border-radius: 20px;
    background-color: #f8f7e2;
    padding: 25px;
    box-shadow: 6px 6px 6px -6px;
}

/* Footer */
.footer{
    height: 25px;
}


/* Removing below to ensure I start clean */
/* html, body {
    padding: 10px;
    margin: 0;
    font-family: sans-serif;
} */

/* nav {
    background-color: #cff;
    padding: 20px;
    font-size: 24px;
} */

/* .list-item {
    list-style: none;
    border: 1px solid black;
    border-radius: 10px;
    margin: 10px;
    padding: 0 5px;
} */

/* .home-main {

} */

/* .home-main-content {
    border: 2px solid #1b998b;
    border-radius: 20px;
    float: right;
} */

/* .left-boxes {
    float: left;
    border: 2px solid black;
    border-radius: 20px;
    width: 200px;
} */

/* .footer {
    
} */

/* Entire page  */
/* .page {
    display: flex;
    padding: 30px;
} */

/* .left-container{
    flex: 1;
} */

/* .right-container{

} */

/* Header Container */
/* .header-container{

} */

/* Main content container for the left menu and main content section */
/* .main-content {

} */