@charset "UTF-8";
/* Global Style Sheet */

/* Body */
body {
	font-family: "Open Sans", "Tahoma", "Verdana", sans-serif;
	background-color: #f2f2f2;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
    font-style: normal;
	font-weight: 200;
}

/* Header Styles */
.headerElement {
    padding: 10px;
}
header #logo {
    background-color: #f2f2f2;
    height: 40px;
}
header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
#navLeft{
    display: flex;
    align-items: center;
}
#dmswitch{
    display:inline;
    padding-left: 10px;
}

/* Nav Styles */
nav ul {
	list-style: none;
    padding: 0px;
}
nav ul li {
	font-size: 14px;
	letter-spacing: 2px;
	font-weight: bold;
    display: inline;
}
ul li a {
	color:#03A9F4;
	text-decoration: none;
}
ul li a:hover {
	color:#4842DC;
}

/* Dark Mode Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
}
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 17px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #03A9F4;
}
input:focus + .slider {
    box-shadow: 0 0 1px #03A9F4;
}
input:checked + .slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
}

/* h Styles */
h3{
    text-align:center;
    margin-top:0px;
    margin-bottom:20px;
    padding-top:15px;
    font-size:28px;
}
h4{
    text-align:center;
    margin-top:0px;
    padding-top:15px;
}

/* Main Content Styles */ 
#container{
    background-color:#DEDEDE;
    margin-left:15px;
    margin-right:15px;
}
section {
    margin-left:50px;
    margin-right:50px;
}

/* Button Styles */
.button{
    text-decoration: none;
    color:#1C167B;
    font-weight: bold;
    padding:7px 15px;
    align-self:center;
    border:none;
    font-size:14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Footer Styles */
#footer{
    text-align:center;
    font-size:12px;
    padding:10px;
    background-color:#929292;
}
#footer.darkMode{
    background-color: #1A191B;
}

/* Dark Mode Style */
.darkMode{
    background-color: #1f1e21;
    color: white;
}
#logo.darkMode {
    background: radial-gradient(#4d85ff, #18022e);
}
#nav.darkMode{
    color:white;
}
#container.darkMode{
    background-color: #18171a;
}

/* Media Queries */
@media (max-width: 700px) {
 
    nav {
        width: 100%;
    }
    nav ul li {
        display: block;
        font-size: 16px;
    }

    #clickMe {
        display: block;
    }

    .showMenu {
        background-color: #f2f2f2;
        display: block;
        text-align: right;
        margin-right: 20px;
    }
    .showMenu.darkMode {
        background-color: #1f1e21;
    }
    .showMenu ul li{
        margin: 10px 0px; 
    }
    .hideMenu {
        display: none;
    }
    #menuicon.darkMode{
        color: white;
    }
}


@media screen and (max-width: 500px) {
  .column {
    width: 100%;
  }
}


@media (min-width: 700px) {

    #clickMe {
        display: none;
    }
    .rowMenu {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    .rowMenu ul li {
        margin: 0px 10px;
    }
}

@media (max-width: 350px){
    h1{
        font-size: 28px;
    }
    h2{
        font-size: 18px;
    }
}

