/**
 * Our custom CSS
 */

body {
    font-family: "Fredoka", sans-serif;
    margin: 0px;
}

#nav {
    color: navy;
    background: #f8e6a8; /** Cream color :) **/
    text-align: center;
    padding: 10px;
    border-bottom: 2px solid navy;
    position: relative;
}

#nav a {
    padding: 20px;
    font-weight: 500;
    font-size: 30px;
}

#web-content {
    padding: 20px;
}

#profile-img {
    width: 300px;
    opacity: 0.33;
}

#toggle-light {
    display: none;
}

#toggle-light, #toggle-dark {
    padding: 0px !important;
    margin: 0px;
    position: absolute;
    top: 5px;
    right: 20px;
}

#toggle-light img, #toggle-dark img {
    height: 50px;
}

.body-content-light {
    color: #333;
    background: white;
}

.body-content-dark {
    color: #ccc;
    background: black;
}

.body-content-dark h1 {
    color: lightskyblue !important;
}