:root
{
    --main-background-color: #000000; /*Black*/
    --text-color: #4caf50; /*Light Green*/
    --accent-color-1: #689f38; /*Dark Green*/
}
body
{
    background-color: var(--main-background-color);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

nav
{
    background-color: transparent; 
}

.nav-link
{
    padding: 14px 16px;
    font-size: 20px;
}

#myNavbar #webLinks
{
    justify-content: center;
    position: relative;
} 


#videos
{
    width: 100%;
    height: auto;
}

.frame-container
{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin: 18px 0;
    border-radius: 20px;
}

.frame-container iframe
{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
}

ul
{
    /*Removes the bullets.*/
    list-style-type: none;
    /*Removes browser default settings.*/
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
}

#socialLinks li
{
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
}

#socialLinks li a
{
    display: block;
    color: white;
    text-align: center;
    padding: 14px 12px;
    text-decoration: none;
}

/*All links on the webpage.*/
li a
{
    display: block;
    color: #3c66a7;
    text-align: center;
    text-decoration: none;
}

li a:hover
{
    color: #a5c7e0;
}

.CTA 
{
    text-align: center;
    padding: 20px;
}

button
{
    background-color: var(--main-background-color);
    border: 2px solid var(--accent-color-1);
    color: var(--accent-color-1);
    border-radius: 5px;
    padding: 20px;
}

button:hover
{
    background-color: var(--accent-color-1);
    color: var(--main-background-color);
    box-shadow: 0px 0px 10px 5px rgba(219, 215, 215, 0.5);
}
/*
.rounded
{
    margin: 8px 0;
    border-top: 5px solid black;
    width: 100%;
    border-radius: 5px;
}
*/