body {
    margin:0px;
    background-color:#222;
}

body.lightmode {
    background-color:#dedede;
}

/* TEXT */
a {
    font-family: 'Roboto', sans-serif;
    text-decoration:none;
    color:rgb(0,100,200);
}

h4 {
    font-family: 'Roboto', sans-serif;
    text-decoration:none;
    font-weight:400;
    font-size:16px;
    padding-top:11px;
    padding-bottom:30px;
    margin:0;
}

.bordertext {
        border-color: currentColor;
        border-style: solid;
        border-width: 1.5px;
        border-radius: 8px;
        padding:8px;
}

.bluegradienttext {
background: linear-gradient(to bottom, #0064C8, #20bdff);
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}

.purplegradienttext {
background: linear-gradient(to bottom, #8e54e9, #4776e6);
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}

.greengradienttext {
background: linear-gradient(to bottom,#06ea1d,#02cc9b);
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}

/* Responsive styles */
@media (max-width: 750px) {
    /*CSS for mobile*/
    h1 {
        font: 10vh 'Roboto', sans-serif;
        font-weight: 400;
        margin:0;
    }

    h2 {
        font: 5vh 'Roboto', sans-serif;
        font-weight: 400;
        padding-left:40px;
        padding-right:40px;
    }

    p {
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
    }
    
    /*
    .imageboxtext {
        font: 40px 'Roboto', sans-serif;
        font-weight: 400;
    }
    
    .imageboxtextbig {
        font: 12vw 'Roboto', sans-serif;
        font-weight: 400;
    }
     */
    
    .topbar {
        display:none;
    }
    
}

@media (min-width: 750px) {
   /*CSS for tablet and computer*/
   h1 {
       font: 80px 'Roboto', sans-serif;
       font-weight: 400;
       margin:0;
   }

   h2 {
       font: 30px 'Roboto', sans-serif;
       font-weight: 400;
       padding-left:40px;
       padding-right:40px;
   }

   p {
       font-family: 'Roboto', sans-serif;
       font-weight: 400;
   }
    
    /*
    .imageboxtext {
        font: 50px 'Roboto', sans-serif;
        font-weight: 400;
    }
    
    .imageboxtextbig {
        font: 10vw 'Roboto', sans-serif;
        font-weight: 400;
    }
    */
}

/* Menubars*/
.topbar {
    position:absolute;
    top:0;
    left:50%;
    text-align:center;
    margin-top:11px;
    transform: translate(-50%, 0);
    padding:10px;
}

.topbar a {
    position:inline;
    color:#222;
    font-size:20px;
    padding-left:20px;
    padding-right:20px;
}

#logo {
    z-index:9000 !important;
    position: absolute;
    height: 44px;
    width:200px;
    top: 11px;
/*    left: 11px;*/
    left: max(11px, env(safe-area-inset-left));
}

.logotext {
    color:#dedede;
    font-size:24px;
    transform: translate(0,8px);
}

.logotext.lightmode {
    color:#222;
}

#logo img {
    max-height:80%;
    display:inline;
    margin:auto;
    margin-top:4px;
}

.logoimage.lightmode {
    display:none !important;
}

/* Buttons */

#cartbutton {
    position: fixed;
    top:66px;
    right:11px;
    
    width:44px;
    height:44px;
    border-radius:22px;
    z-index:10002;
    background-color:rgb(1,200,1);
    display:none;
}

.menubutton {
    position: fixed;
    top:11px;
    right:11px;
    right: max(11px, env(safe-area-inset-right));
    
    width:44px;
    height:44px;
    border-radius:22px;
    
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index:10003;
}

.activemenu
{
    background-color:rgb(255,255,255);
}

.passivemenu
{
    background-color:rgb(0,100,200);
}

.whitebar {
    position: absolute;
    background-color: white;
}

.bluebar {
    position: absolute;
    background-color: rgb(0,100,200);
}

.blackbar {
    position: absolute;
    background-color: black;
}

#iconbar1 {
    top: 14px;
    right: 10px;
    width: 24px;
    height: 5px;
    border-radius:3px;
}

#iconbar2 {
    top: 26px;
    right: 10px;
    width: 24px;
    height: 5px;
    border-radius:3px;
}

.resetnav1
{
    -webkit-transition: -webkit-transform 1s;
}

.resetnav2
{
    -webkit-transition: -webkit-transform 1s;
}

.rotatenav1
{
    -webkit-transform:translateY(6px) rotate(45deg);
    -webkit-transition: -webkit-transform 0.5s;
}

.rotatenav2
{
    -webkit-transform:translateY(-6px) rotate(-45deg);
    -webkit-transition: -webkit-transform 0.5s;
}

/* Menu list */
.menuli {
    position: fixed;
    top:44px;
    right:44px;
    margin:0;
    padding:0;
    text-align:right;
    font-size:20px;
    color:black;
    display:none;
    overflow:scroll;
}

.menuli li{
    display: block;
    color: inherit;
    padding-top:10px;
    padding-bottom:10px;
}

.menuli li a{
    color: inherit;
    text-decoration:none;
    
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menuli:hover li a{
}







/* Content */

.fullscreentext {
    text-align:center;
    width:100%;
    margin:0;
    padding-top:80px;
    padding-bottom:80px;
}





/* Images */

.fsimage {
    margin:0;
    padding:0;
    width:100vw;
    height:110vh;
    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    overflow:hidden;
}

.fsimagetext {
    display: table-cell;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align:center;
}

.iosicon img{
    width:128px;
    height:128px;
    border-radius: 32px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.androidicon img{
    width:128px;
    height:128px;
    border-radius: 64px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Infobox */
.infobox {
    text-align:center;
}

.infoboximagediv {
    padding-top:44px;
    width:100%;
    height:100px;
}

.infoboximagediv img {
    max-height:100%;
    max-width:100%;
    display:block;
    margin:auto;
}

.infoboxtitle {
    padding:44px;
    padding-bottom:0px;
    margin:0;
}

.infoboxtext {
    padding:44px;
    margin:0;
}



/* Hybridbox */
.hybridbox {
    border-collapse:collapse;
    width:100%;
    position:block;
    padding:20px;
    padding-top:44px;
    text-align:center;
}

@media (max-width: 750px) {
    .hybridcontent {
        width:100%;
        display:block;
        border: none;
        margin:0;
        padding:0;
    }
}

@media (min-width: 750px) {
    .hybridcontent {
        padding-top:44px;
        padding-bottom:44px;
    }
}

.hybridcontent {
    vertical-align: middle;
    border: none;
    margin:0;
}

.hybridcontent img {
    max-height:100%;
    max-width:100%;
    display:block;
    margin:auto;
}

/* Sharediv */

.fsheight {
    height:100vh;
}


.zoombox {
    width:100%;
    position:block;
    padding-top:44px;
    text-align:center;
}

div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 88px;
  text-align:center;
}

.flipX {
    transform:scaleX(-1) !important;
    -webkit-transform:scaleX(-1) !important;
}


.bounce {
    -webkit-animation: fadebouncevertical 3s infinite;
    animation: fadebouncevertical 3s infinite;
}

@-webkit-keyframes fadebouncevertical {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
    
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
        opacity: 0
    }
    
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

.waves{
    width:100%;
    margin-top:-2px;
    margin-left:0px;
    margin-right:0px;
    position:absolute;
    background-color:transparent;
}


.fixedbg {
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: cover;
}

.centerdiv {
      text-align: center;
      margin: 0;
      position: relative;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
}

.centerYdiv {
      margin: 0;
      position: relative;
      top: 50%;
      transform: translate(0, -50%);
}

.connectorpad {
    width:20px;
    height:20px;
    border-radius:10px;
    background:yellow;
}

.container {
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.scrambletext {
    font-family: 'Roboto', sans-serif;
    text-decoration:none;
    font-weight:100;
    font-size:26px;
    text-align:center;
    padding:10px;
    color:#dedede;
}

.scrambletext.lightmode {
    color:#222;
}

#mission {
   background-color:#222;
}

#mission.lightmode {
    background-color:#dedede;
}

.dud {
  color:#757575;
}



/* FOOTER */
.copyright {
    padding:11px;
    font-size:14px;
    color:rgba(222,222,222,1);
    text-align:center;
    
    background-color:#4ea820;
    width:100%;
}

.copyright.lightmode {
    background-color:#7ec850;
}

.footer {
    position:absolute;
    left: 220px;
    right:0px;
    padding:5px;
    padding-left:11px;
    text-align:right;
    font-size:14px;
    justify-content: flex-end;
    align-items: right;
    display: flex;
    flex-wrap: wrap;
}

.footer > * {
        padding:5px;
        padding-left:11px;
        flex: 0 0 50px;
}

/*
.footer td:nth-child(1n+1){
    padding-right: 10px;
    text-align:right;
}

.footer td:nth-child(1){
    text-align:left;
    width:100%;
}
 */

.flexbottombar {
        display: flex;
        flex-wrap: wrap;
        padding-bottom:40px;
        background-color:#151515;
}

.flexbottombar.lightmode {
    background-color:#333;
}

.flexbottombar > * {
        padding-left:20px;
        padding-top:20px;
        padding-bottom:40px;
        flex: 0 0 250px;
}

.signupbutton {
    padding:10px;
    padding-left:15px;
    padding-right:15px;
    border-radius:20px;
    border:none;
    background-color:rgb(0,100,200);
    color:rgba(222,222,222,1);
}

.textfield {
    width:230px;
    border:none;
    font-family: 'Roboto', sans-serif;
    font-size:14px;
    padding:5px;
    padding-left:15px;
    height:30px;
    border-radius:30px;
    margin:10px;
    background-color:#444;
    color:white;
}
    
.textfield.lightmode {
    background-color:#fefefe;
    color:black;
}

.bg-image > * {
    color:#dedede;
}

.bg-image.lightmode > * {
    color:#222;
}

.bg-image {
    height: max(700px, 100vh) !important;
}

/*
input[type=text] {
    color:inherit;
    padding:8px;
    padding-left:15px;
    border-radius:20px;
    border:solid 1px;
    background-color:transparent;
}
 */

/* INFOCARD */

.infocard {
    border-collapse:collapse;
    border:none;
    margin:40px;
    margin-top:20px;
    border-radius:20px;
    
    position:relative;
}

.moreinfo {
    position:absolute;
    text-align:center;
    margin-top:20px;
    margin-bottom:20px;
    bottom:0px;
    width:100%;
    
}

.mib {
    height:107px;
}

.flipside {
    display:none;
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100vw;
    height:100vh;
    background-color:black;
    z-index:10000;
    overflow-y:scroll;
}

.flipside.lightmode {
    background-color:#c4c4c4;
}

.fsdismiss {
    position:fixed;
    top:11px;
    right:11px;
    width:44px;
    height:44px;
    border-radius:22px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index:10010;
}

.fsdismiss > * {
    margin: 6px 5px !important;
}

.flexActive {
    height:auto;
    width:100vW !important;
    flex: 0 0 100% !important;
}

.flexPassive {
    flex: 0.00001 !important;
}

.banner {
    height:250px;
    background-size: cover;
    border-top-left-radius:inherit;
    border-top-right-radius:inherit;
    position:relative;
    background-color: rgba(0,0,0,0.4);
    background-blend-mode: darken;
    cursor: pointer;
    
}

.infocard h1, .infocard p {
    margin:20px;
}

.infocard h1 {
    font-size:30px;
}

.infocard p {
    margin-top:0px !important;
}

.playstorebutton {
    display:inline-block;
    height:45px;
    width:152px !important;
    overflow:hidden;
}

.playstorebutton img{
    position:relative;
    height:148% !important;
    width:auto !important;
    top:-24%;
    left:-6.4%;
}

.appstorebutton {
    height:45px !important;
    width:auto !important;
    overflow:visible !important;
    border-radius:0 !important;
}

.appstorebutton img{
    height:100% !important;
    width:auto !important;
    border-radius:0 !important;
}

.websitebutton {
    display: inline-block;
    overflow: hidden;
    background-color:black;
    border: solid 1px gray;
    border-radius: 7px;
    text-align:center;
    padding:10px;
    color:white;
    font-size:125%;
    cursor: pointer;
    
}

.appicon {
    width:140px !important;
    height:140px !important;
    border-radius:15px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.flexgrid {
    display: flex;
    flex-wrap: wrap;
    padding-bottom:40px;
    justify-content: center;
}

.flexgrid > * {
    flex: 0 0 340px;
}

/* USER */

.userprofile, .bg-image {
    text-align:center;
    background-color: rgba(0,0,0,0.8);
    background-blend-mode: darken;
    padding-bottom:0px;
}

.userprofile.lightmode, .bg-image.lightmode {
    background-color: rgba(255,255,255,0.8);
    background-blend-mode: lighten;
}

.userprofile h2{
    color:#808080;
    font-size:20px;
    margin-bottom:20px;
}

.userimage {
    border-radius:50%;
    height:200px;
    margin:50px;
}

.nametag {
    position:relative;
    display:inline-block;
    height:60px;
    width:60px;
    border-radius:50%;
    margin:10px;
    top:-130px;
    left:70px;
}

.userprofile h1 {
    display:inline-box;
    font-size:24px;
    transform: translate(0, -110px);
}

.fadedtext {
    color:#808080;
}

.bgfadein {
    background: linear-gradient(rgba(34,34,34,1),rgba(34,34,34,0));
}

.bgfadein.lightmode {
    background: linear-gradient(rgba(222,222,222,1),rgba(222,222,222,0));
}

.bgfadeout {
    background: linear-gradient(rgba(34,34,34,0),rgba(34,34,34,1));
}

.bgfadeout.lightmode {
    background: linear-gradient(rgba(222,222,222,0),rgba(222,222,222,1));
}

.employee-badge {
    position:relative;
    width:300px;
    height:400px;
    top:125px;
    left: 50%;
    border-radius:20px;
    transform: translate(-50%, 0);
    padding-bottom:60px;
    background-color:#dedede;
    color:#222;
    
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2)
}

.lanyard-hole {
    position:relative;
    top:25px;
    left: 50%;
    height:20px;
    width:60px;
    transform: translate(-50%, 0);
    border-radius:10px;
    background-color:#222;
    color:#222;
}

.lanyard {
    background-color:#FECC00;
    position:absolute;
    left:50%;
    top:-40px;
    width: 44px;
    height: 200px;
    border-radius: 4px;
    transform: translate(-22px, 0);
    z-index:1;
    
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.lanyard-buckle {
    background-color:darkgrey;
    position:absolute;
    left:50%;
    top:58px;
    width: 60px;
    height: 60px;
    transform: translate(-30px, 0);
    z-index:2;
    
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.lanyard-button {
/*    background-color:gray;*/
    position:absolute;
    left:50%;
    top:68px;
    width: 40px;
    height: 40px;
    border-radius:20px;
    transform: translate(-20px, 0);
    z-index:3;
    
    background-image: -webkit-repeating-radial-gradient(center, hsla(0,0%,100%,0) 0%, hsla(0,0%,100%,0)   6%, hsla(0,0%,100%, .1) 7.5%),
        -webkit-repeating-radial-gradient(center, hsla(0,0%,  0%,0) 0%, hsla(0,0%,  0%,0)   4%, hsla(0,0%,  0%,.03) 4.5%),
        -webkit-repeating-radial-gradient(center, hsla(0,0%,100%,0) 0%, hsla(0,0%,100%,0) 1.2%, hsla(0,0%,100%,.15) 2.2%),
        
        linear-gradient(120deg, hsl(0,0%,78%)  0%,
        hsl(0,0%,90%) 47%,
        hsl(0,0%,78%) 53%,
        hsl(0,0%,70%)100%);
        
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        
        
    
}

.spin {
    -webkit-animation:spin 4s linear infinite;
        -moz-animation:spin 4s linear infinite;
        animation:spin 4s linear infinite;
    }

@-moz-keyframes spin {
    100% { -moz-transform: rotate(360deg); }
}

@-webkit-keyframes spin {
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform:rotate(360deg);
    }
}


.darkmodebutton {
    position:fixed;
    top: 11px;
    width: 44px;
    height: 44px;
    border:none;
    border-radius:22px;
    right: max(66px, calc(env(safe-area-inset-right) + 55px));
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index:10001;
}

.darkmodebutton, .fsdismiss {
    background-color:#dedede;
    color:black;
}

.darkmodebutton.lightmode, .fsdismiss.lightmode {
    background-color:#222;
    color:white;
}

.darkmodebutton.lightmode > *{
    transform:scaleX(-1);
}



/* COLORS */
#skills, #projects, .bg-color {
    background-color:#222;
    color:white;
}

#skills.lightmode, #projects.lightmode, .bg-color.lightmode{
    background-color:#dedede;
    color:black;
}

#environment {
    margin-top:-45px;
/*    background: linear-gradient(to bottom, #4a4969 0%,#7072ab 50%,#cd82a0 100%);*/
    text-align:center;
}

#environment.lightmode {
/*    background: linear-gradient(to bottom, #57c1eb 0%,#246fa8 100%)*/
}

.grass {
    background-color:#4ea820;
/*    background:linear-gradient(180deg, rgba(78,168,32,1) 0%, rgba(10,73,7,1) 100%);*/
    width:100%;
    color:white;
}

.grass.lightmode {
    background-color:#7ec850;
/*    background: linear-gradient(180deg, rgba(89,193,36,1) 0%, rgba(16,108,12,1) 100%);*/
}

.neumorph {
    box-shadow:  20px 20px 30px #000
}

.neumorph.lightmode {
    box-shadow:  20px 20px 40px #bdbdbd,
                 -20px -20px 40px #ffffff;
}

.iostheme {
    background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
    color:rgba(34,34,34,1);
}

.androidtheme {
    background:#3DDC84 !important;
    color:rgba(34,34,34,1) !important;
}

.bluetheme {
    background:rgba(0,100,200,1);
    color:rgba(222,222,222,1);
}

.footer, .footer a { color:#dedede; }

.flexbottombar, .flexbottombar a {
    color:#dedede;
    font-size:14px;
}


.ios.ss, .xcode.ss {
    background-color:#0071e3 !important;
    color:white !important;
}

.swift.ss {
    background: linear-gradient(0deg, #FB1E20 0%, #F8A031 100%) !important;
    color:white !important;
}

.swiftui.ss {
    background: linear-gradient(0deg, #012BB9 0%, #20F3F5 100%) !important;
    color:black !important;
}

.android.ss, .androidstudio.ss {
    background-color:#3DDC84 !important;
    color:black !important;
}

.firebase.ss {
    color:black !important;
    background-color:#FDC11F !important;
}


.java.ss {
    background-color:#E4001D !important;
    color:white !important;
}

.javascript.ss {
    background-color:#F5DA18 !important;
    color:black !important;
}

.html.ss {
    background-color:#EB4E20 !important;
    color:white !important;
}

.css.ss {
    background-color:#1C31DC !important;
    color:white !important;
}

.nodejs.ss {
    background-color:#84ba64 !important;
    color:white !important;
}

.objc.ss, .ib.ss {
    background: linear-gradient(0deg, #0041a3 0%, #0071e3 100%) !important;
    color:white !important;
}

.stm32.ss {
    background-color:#3cb4e6 !important;
    color:white !important;
}

.clang.ss {
    background-color:rgb(30,32,131) !important;
    color:white !important;
}

.web.ss {
    background-color:#700cb3 !important;
    color:white !important;
}

/* TYPETAG */

.typetag {
    background-color:gray;
    color:white;
    border-radius:30px;
    padding:5px;
    padding-left:10px;
/*    padding-right:10px;*/
    margin-right:5px;
    line-height:250%;
    white-space: nowrap;
    font-size:14px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.infotext > .typetag {
    font-size:13px;
    box-shadow: none;
}

.infotext span {
    padding-right:10px;
}

.fa-xmark {
    padding-left:7px;
    padding-right:2px;
}

.fa-plus {
    padding-left:5px;
}



.fsb1 {
    position:absolute;
    top:11px;
    right:11px;
    transform:rotate(45deg);
    border:none;
    background-color:transparent;
    color:white;
    -webkit-animation:up-right 2s linear infinite;
        -moz-animation:up-right 2s linear infinite;
        animation:up-right 2s linear infinite;
        
    display: none;
        
}

.fsb2 {
    position:absolute;
    top:25px;
    right:25px;
    transform:rotate(-135deg);
    border:none;
    background-color:transparent;
    color:white;
    -webkit-animation:down-left 2s linear infinite;
        -moz-animation:down-left 2s linear infinite;
        animation:down-left 2s linear infinite;
        
    display: none;
}


.linkish {
    font-family: 'Roboto', sans-serif;
    text-decoration:none;
    color:rgb(0,100,200);
    text-align:center !important;
    cursor: pointer;
}

@-moz-keyframes up-right {
    50% { -moz-transform: translate(3px,-3px) rotate(45deg); }
}

@-webkit-keyframes up-right {
    50% { -webkit-transform: translate(3px,-3px) rotate(45deg); }
}

@keyframes up-right {
    50% {
        -webkit-transform: translate(3px,-3px) rotate(45deg);
        transform:translate(3px,-3px) rotate(45deg);
    }
}

@-moz-keyframes down-left {
    50% { -moz-transform: translate(-3px,3px) rotate(-135deg); }
}

@-webkit-keyframes down-left {
    50% { -webkit-transform: translate(-3px,3px) rotate(-135deg); }
}

@keyframes down-left {
    50% {
        -webkit-transform: translate(-3px,3px) rotate(-135deg);
        transform:translate(-3px,3px) rotate(-135deg);
    }
}


:root {
    --sat: env(safe-area-inset-top);
    --sar: env(safe-area-inset-right);
    --sab: env(safe-area-inset-bottom);
    --sal: env(safe-area-inset-left);
}


#uservalues {
    margin:20px;
    margin-top:40px;
}

.dmtext {
    color:#dedede;
}

.dmtext.lightmode {
    color:#222;
}

.uvlabel {
    font-size:14px;
    padding-left:25px;
}

.uvtitle {
    padding-top:40px;
    padding-left:25px !important;
}


.toggleswitch {
    width:61px;
    height:36px;
    
    border:solid 2px;
    border-radius:20px;
    border-color:gray;
    
    display:inline-block;
    margin:10px;
    
    background-color:#444;
}

.toggleswitch.lightmode {
    background-color:white;
    border-color:gray;
}

.toggleswitch_on {
    background-color:#4ea820 !important;
}


.toggle {
    width:36px;
    height:36px;
    border-radius:20px;
    
    background-color:#dedede;
    color:#444;
}

.toggle_off {
    -webkit-transform:translateX(0px);
    -webkit-transition: -webkit-transform 0.5s;
}

.toggle_on {
    -webkit-transform:translateX(25px);
    -webkit-transition: -webkit-transform 0.5s;
}

.toggleswitchlabel {
    transform:translateY(21px);
}


/* BLOGPOST */

.blog-banner {
    position:relative !important;
    width:100% !important;
    max-height:100% !important;
    border-radius:0 !important;
    margin:0 !important;
}

.blog-post {
    max-width:700px;
    min-height:100vh;
    margin-left: auto;
    margin-right: auto;
}

.blog-post {
    background-color: #222;
    color:#dedede;
}

.blog-post.lightmode {
    background-color: #dedede;
    color:#222;
}

.blog-post p {
    line-height:140%;
}

.blog-post img {
    width:calc(100% - 40px);
    max-height:100%;
    border-radius:10px;
    margin:20px;
    margin-bottom:40px;
}

.centercontent {
    width:100%;
    text-align:center;
    padding-bottom:20px;
    padding-top:20px;
}

.iconpulse {
    -webkit-animation:pulse 2s linear infinite;
    -moz-animation:pulse 2s linear infinite;
    animation:pulse 2s linear infinite;
}
/*
@-moz-keyframes pulse {
    
    0% {
        -moz-transform: scale(0.95) translate(-50%, -50%);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
        }

        70% {
            -moz-transform: scale(1) translate(-50%, -50%);
            box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
        }

        100% {
            -moz-transform: scale(0.95) translate(-50%, -50%);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        }
    
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95) translate(-50%, -50%);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
        }

        70% {
            -webkit-transform: scale(1) translate(-50%, -50%);
            box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
        }

        100% {
            -webkit-transform: scale(0.95) translate(-50%, -50%);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        }
}
*/

@keyframes pulse {
    
        0% {
            transform: translate(-50%, -50%) scale(1);
            box-shadow: 0 0 0 0px rgba(0, 0, 0, 0);
        }
    
        15% {
            transform: translate(-50%, -50%) scale(1.05);
            box-shadow: 0 0 0 0px rgba(0, 0, 0, 0);
        }
        
        30% {
            transform: translate(-50%, -50%) scale(1);
            box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.7);
        }

        50% {
            transform: translate(-50%, -50%) scale(1);
            box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.7);
        }

        100% {
            transform: translate(-50%, -50%) scale(1);
            box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
        }
}
