@font-face {
    font-family: robotoMonoItalic;
    src: url("fonts/Roboto_Mono/RobotoMono-Italic.ttf");
}

@font-face {
    font-family: robotoMonoMedium;
    src: url("fonts/Roboto_Mono/RobotoMono-Medium.ttf");
}

@font-face {
    font-family: robotoMedium;
    src: url("fonts/Roboto/Roboto-Medium.ttf");
}

body {
    background-color: #1c001f;
    font-family: robotoMonoMedium;
    color: #000000;
    margin: 0;
    padding: 0;
    height: 100%;
}

p {
    margin: 0;
}

h1 {
    margin: 0
}

#container {
    max-width: 850px;
    min-height: 100%;
    margin: 0 auto 0 auto;
    /* padding: 20px; */
    background-color: #fff;
    /* box-shadow: #000000 0px 0px 6px; */
}

#content {
    /* background-color: #f0f0f0; */
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    margin: 0;
    padding: 20;
}

#content p,
li {
    font-family: Arial, sans-serif;
}

#nav {
    background-color: #1c001f;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: #8f8f8f;
    font-family: robotoMonoMedium;
    /* box-shadow: #777 0px 0px 6px; */
    /* margin-bottom: 20px; */
}

.generated-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-right: 20px;
}

.generated-logo {
    width: 70px;
    height: 70px;
}

.generated-quote {
    margin: 0px;
}

.generated-navigation {
    text-align: right;
    display: flex;
    gap: 20px;
    flex-direction: row;
}

.generated-navigation a {
    color: white;
    text-decoration: none;
}

@media only screen and (max-width: 800px) {
    .generated-quote {
        display: none;
    }
}

#nav p {
    font-family: robotoMedium;

}

#nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#nav ul li {
    display: inline;
}

#nav ul li a {
    text-decoration: none;
    color: #333;
    font-family: robotoMedium;
}

#nav ul li a:hover {
    text-decoration: underline;
}


/* HOME PAGE BLOG PREV =============================*/

#blog-prev {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.preview-home {
    /* border: 3px solid #ddd; */
    /* padding: 10px; */
    width: 300px;
    /* font-family: robotoMedium; */
    box-shadow: #777 0px 0px 6px;

}

.preview-home img {
    max-width: 100%;
    height: auto;
}

.preview-home h4 {
    margin: 10px;
}

.preview-home p {
    margin-top: 0px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #666;
}

/* BLOG PAGE  PREV =============================*/

#blog-full {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.preview-blog {
    display: flex;
    flex-direction: row;
    /* border: 3px solid #ddd; */
    height: 200px;
    /* font-family: robotoMedium; */
    box-shadow: #777 0px 0px 6px;
}

.preview-block-info {
    padding: 10px
}

.preview-blog img {
    height: 200px;
    margin-right: 20px;
    /* max-height: 100%; */
    /* height: auto; */
}

.preview-blog h4 {
    margin: 10px 0 5px;
}

.preview-blog p {
    font-size: 0.9em;
    color: #666;
}

/* MOBILE LAYOUT =============================*/

@media print {

    .no-print,
    .no-print * {
        display: none !important;
    }
}

@media print {
    body {
        height: auto;
    }

    #container {
        min-width: none;
        min-height: none;
        box-shadow: none;
    }

    .no-print,
    .no-print * {
        display: none !important;
    }
}