body {
    font-family: proxima-nova,Helvetica,Arial,sans-serif;
    font-weight: 300;
    font-size: 100%;
    line-height: 1.4;
    color: #000;
}

body.dark-mode,
body.dark-mode button,
button.dark-mode,
button.dark-mode button {
    background: #000;
    color: #fff;
}

#name {
    text-align: center;
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-style: normal;
    font-size: 50px;
    margin-top: 0;
    padding: 0;
    letter-spacing: 3px;
}

.navigationContainer {
    margin: 0;
}

.header-frame {
    padding: 0;
}

.navigation {
    list-style: none;
    margin: 0;
    padding: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: center;
}

.narwhalContainer {
    margin: 0;
    text-align: center;
    cursor: pointer;
}

.navigation a {
    text-decoration: none;
    display: block;
    font-weight: bold;
    padding: 15px;
    color: #000000;
    -o-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

li > a {
    text-decoration: none;
    color: rgba(0,0,0,.4);
    z-index: 1;
}

li > a:before {
    content: "";
    background: #7FDBFF;
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    border-radius: 5px;
    transform: scaleX(0);
    animation: 1.4s forwards no-hover-v linear;
    animation-fill-mode: forwards;
    z-index: -1;
}
li > a:hover:before,
li > a:focus:before {
    animation: .5s forwards hover-v linear;
    animation-fill-mode: forwards;
}

.linkContainer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: block;
}


.links {
    list-style: none;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: center;
}

.links a {
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    padding: 20px;
    /*margin-top: 20px;*/
    color: #000000;
    -o-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}


.dark-mode-toggler {
    position: fixed;
    top: 5px;
    right: 5px;
}

.dark-mode-toggler label {
    position: relative;
}
.dark-mode-toggler input[type='checkbox'] {
    display: none;
}
.dark-mode-toggler input[type='checkbox'] + label::before {
    content: '';
    display: block;
    height: 26px;
    width: 60px;
    background: #fff;
    border: 2px solid #96979c;
    border-radius: 15px;
    position: absolute;
    top: 0px;
    left: -65px;
}
.dark-mode-toggler input[type='checkbox'] + label::after {
    content: '';
    display: block;
    height: 20px;
    width: 20px;
    background: #96979c;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: -62px;
    transition: all 0.4s ease-in;
    cursor: pointer;
}
.dark-mode-toggler input[type='checkbox']:checked + label::before {
    background: #000;
    border: 2px solid #fff;
}
.dark-mode-toggler input[type='checkbox']:checked + label::after {
    left: -28px;
    background: #000;
    border: 2px solid #fff;
    transition: all 0.4s ease-in;
}