/*
Theme Name: CWW Custom Theme
Author: Thomas Wicks
Author URI: https://tom-wicks.github.io
Description: Theme converted from static website
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: <https://www.gnu.org/licenses/gpl-2.0.html>
Text Domain: cww-custom-theme
*/

  /*Header*/

  .site-header {
    height: 70px;
    padding: 5px 15px;
    z-index: 100;
    background-color: rebeccapurple;
    color:aliceblue;
    font-family: "Merriweather Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
  }

  .site-title {
    float: left;
    text-align: left;
  }

  .site-title a {
    text-decoration: none;
    color: aliceblue;
  }

  .site-title a:link {
    text-decoration: none;
    color: aliceblue;
  }

  .site-title a:visited {
    color: aliceblue;
  }

  .menu {
    float: right;
    text-align: right;
  }

  .menu ul {
    list-style-type: none;
    padding-top: 10px;
    overflow: hidden;
  }

  .menu li {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
  }

  .menu ul li a {
    text-decoration: none;
    color: aliceblue;
    font-weight: 500;
    transition-duration: 0.4s;
  }

  .menu ul li a:hover {
    color: aquamarine;
  }

  .site-header ul, .site-header li {
    float: right;
    text-align: right;
    list-style-type: none;
    padding-top: 25px;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 10px;
    height: 100%;
  }

  .site-header ul li {
    padding-top: 0px;
  }

  .site-header ul li a, .site-header li a {
    text-decoration: none;
    color: aliceblue;
    font-weight: 500;
    transition-duration: 0.4s;
  }

  .site-header ul li a:hover, .site-header li a:hover {
    color: aquamarine;
  }

  .site-header li .sub-menu {
    display: none;
    background-color: rebeccapurple;
    padding-bottom: 15px;
    position: absolute;
    width: 100%;
    height: fit-content;
    left:0;
    padding-top: 5px;
  }

  .site-header li:hover .sub-menu, .site-header li .sub-menu:hover {
    display: block;
  }

  /*Content*/

  .site-content {
    padding-left: 50px;
    padding-right: 50px;
    margin: auto;
    min-height: calc(100vh - 180px);
    font-size: large;
    max-width: 1000px;
  }

  body {
    margin: 0;
    font-family: "Merriweather Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: #1f1f1f;
    background-color: #f5f5f5;
    overflow-x: hidden;
  }

  img {
    border:#1f1f1f;
    border-radius: 4px;
  }

  a:link {
    color: mediumpurple;
  }

  a:visited {
    color: purple;
  }

  /*Footer*/
  .site-footer {
    background-color: black;
    color: whitesmoke;
    height: 50px;
    list-style-type: none;
    margin-top: 26px;
  }

  .smlinks {
    font-size: xx-large;
    padding: 5px 10px;
  }

  .smlinks a{
    text-decoration: none;
  }

  .contactlink {
    float: right;
    font-size: large;
    padding: 10px 10px;
  }

  .site-footer li {
    font-size: xx-large;
    padding: 5px 5px;
    float: left;
    text-align: left;
    list-style-type: none;
    overflow: hidden;
  }

  .site-footer li a {
    text-decoration: none;
  }