
/* Text Stylings */

h1 {
    color: #2c537b;
}
h2 {
    font-size: 24px;
    text-align: center;
    color: #2c537b;
}
a {
    font-weight: bold;
}
p {
    font-size: 15px;
    font-weight: lighter;
}

#title_heading {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}
.etc a, .button_link {
    display: inline-block;
    background: #e5fbff;
    color: black;
    text-decoration: none;
    padding: 9px;
    margin: 1px;
    font-size: 17px;
    border-radius: 15px;
    border: 5px outset #b3c6c9;
}
.etc a:hover, .button_link:hover {
    background-color: #ffffff;
    border: 5px outset #cadfe3;
    color: black;
}
.etc a:active, .button_link:active {
    background-color: #a9a9a9;
    border: 5px outset #859295;
    color: white;
}



/* General Stylings */

body {
    margin: 0; /* Reset/Initialize CSS */
    padding: 0;
    background-color:rgb(141, 255, 121);
    background-image: url("Assets/site_bg.png");
    background-size: 80px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.header {
    background-color: #a7ffbb;
    padding: 10px;
    text-align: center;
    border: 7px double #23682b;
    border-radius: 15px;
}
.section {
    background-color: #e2ffe3;
    margin-left: 240px;
    margin-right: 240px;
    padding: 20px;
    padding-left: 60px;
    padding-right: 60px;
    color: black;
    font-size: 14px;
    border: 6px outset #aec5af;
}
footer{
    background-color: #000000;
    padding: 10px;
    font-family: sans-serif;
    text-align: center;
    font-size: 12px;
    color: white;
}
.etc {
    background-color: #b7f3ff;
    margin-left: 60px;
    margin-right: 60px;
    padding: 10px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: center;
    text-decoration: none;
    border: 8px ridge lightblue;
    border-radius: 15px;
}


/* Navbar Stylings */

.topnav {
    display: inline-block;
    overflow: auto;
    background-color: #23682b;
    border-radius: 15px;
}
.topnav a {
    float: left; 
    color: #ffffff;
    padding: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
    text-align: center;
    text-decoration: underline;
}
.topnav a:hover {
    background-color: #ffffff;
    color: #23682b;
}
.topnav a:active {
    background-color: #04AA6D;
    color: white;
}



/* Back to Top Button */
#scroll {
    width: 150px;
    height: 202px;
    background-image: url("Assets/blocky_h.png");
    background-size: cover;
    background-color: transparent;
    border: none;
    cursor: pointer;
}



/* Intro Page */

#intro {
    text-align: center;
}
.cols_intro {
    display: grid;
    align-items: center; 
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5px;
}



/* Blog Post Stylings */

.cols {
    display: grid;
    align-items: center; 
    grid-template-columns: 1fr 1fr;
    column-gap: 5px;
    text-align: left;
}
.blogpost {
    background-color: #9e559e;
    margin: 10px;
    margin-left: 80px;
    margin-right: 80px;
    padding: 14px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: white;
    border: 5px dotted #43274b;
}
.blogimg, .blogdesc {
    padding: 10px;
}



/* List Stylings */

.list {
    background-color: #fffa78;
    margin: 5px;
    margin-left: 60px;
    margin-right: 60px;
    padding: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 15px;
    color: black;
    border: 3px inset #aec5af;
    border-radius: 15px;
}
.list ul {
    display: table;
    margin: 0 auto;
    padding: 5px 30px;
    text-align: left;
    background: #fafff2;
    border-radius: 15px;
}



/* Media Stylings */

video {
    border: 5px solid #4f4f4f;
    padding: 4px;
    margin: 10px;
    height: 220px;
}
.blogpost img {
    border: 10px solid #ffffff;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 320px;
    height: 240px;
}
