body {
    display: block;
    margin: 0px;
}

ul {
    list-style-type: none;
    margin:0;
    padding:0;
    overflow: hidden;
}

li {
    float: left;
}

li a {
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

p { 
    font-size: 20px;
}

.menu {
    width: 100%;
}

.footer {
    width: 100%;
    position: absolute;
    padding-bottom: 100px;
    bottom: 0px;
}

.toggle {
    border-style: outset;
    width: 400px;
    background-color: rgba(76,175,80,0.15)
}

/* Dark Mode */
.dark {
    background-color:#243447;
    height:100vh;
    color: #bebebe
}

.dark li a {
    color: #bebebe;
}

.dark li a:hover {
    background-color: #111;
}

/* Light Mode */
.light {
    background-color: #f0ead6;
    color: black;
    height: 100vh;
}

.light li a {
    color: black;
}

.light li a:hover {
    background-color: yellow;
}

/* Styling the Switch button */
.switch {
    position: relative;
    display: inline-block;
    width:60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    background-color: #111;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height:26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: gray;
}

input:focus + .slider {
    box-shadow: 0 0 1px gray;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius:34px;
}

.slider.round:before {
border-radius: 50%;
}

.row {
    margin: 20px;
    display: flex;
}

.col {
    margin: 20px;
}