
    body{
        background: #212529;
        color: #f8f9fa;
    }


    h1{
        font-size: 8em;
        color: unset;
        font-family: ellograph-cf, monospace;
        font-weight: 700;
        font-style: normal;
        line-height: 100px;
       
    }
    h2{
        color: unset;
        font-family: ellograph-cf, monospace;
        font-weight: 700;
        font-style: normal;
    }
    h3{
        font-size: 8em;
        color: #f8f9fa;
    }
    p{
        font-family: ellograph-cf, monospace;
        font-weight: 300;
        font-style: normal;
    }
    .hero-container{
        width: 100vw; 
        height: 100vh;
       
    }
    .uk-button-default{
        color: unset;
        transition: all .35s;
        position: relative;
        z-index: 2;
        font-family: ellograph-cf, monospace;
    }
    .btn-wrapper{
  position: relative;
  border-radius: 10%;
}
.uk-button-default:after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: white;
  transition: all .35s;
  z-index:-1;
}

.uk-button-default:hover{
  color: black;
}

.uk-button-default:hover:after{
  width: 100%;
}

    .menu-item{
        font-family: ellograph-cf, monospace !important;
        font-weight: 300;
        font-style: normal;
    }

    .project-container{
        width: 100%; 
        height: 400px;
        background: white;
        position: relative;
       
    }

    .project-container h3 {
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: ellograph-cf, monospace;
        font-weight: 700;
        font-style: normal;
        font-size: 5em;
        text-transform: uppercase;
        text-align: center;
        width: 100%;
    }
    .overlay{
        width:100%;
        height: 100%;
        background: black;
        opacity: .5;
    }
    .space{
        width: 100%; 
        height: 250px;
    }
    .nav-fixed{
        position: fixed;
        width: 100%;
        background: transparent !important;
        z-index: 2;
        height: 75px;
    }

 
    .dark-mode {
        background-color: #f8f9fa;
        color: #212529;
    }
    .dark-mode .uk-button-default{
        border: 1px solid #212529;
    }

    .dark-mode .uk-button-default:after{
        background: #212529;
    }

    .dark-mode .uk-button-default:hover{
        color: white;
    }
    /*slider switch css */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
  

}
.theme-switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.theme-switch input {
  display:none;
}

.dark-mode .uk-modal-body{
    width: 100%;
    color: #212529;
    background:white;
}

.dark-mode .overlay{
    background: white;
}
.dark-mode .project-container h3{
    color: black
}

.dark-mode .hover-underline-animation {
  color: black;
}


.dark-mode .hover-underline-animation:after {
  background-color: black;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

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

input:checked + .slider {
  background-color: #66bb6a;
}

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

.slider.round {
  border-radius: 34px;
}

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

::selection {
  background: black; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: black; /* Gecko Browsers */
}

/*
.project-container:hover h3 {
    color: black;
}
*/
.overlay{
    transition: 0.3s;
}
.overlay:hover{
   opacity: 0;
    
}
.project-container:hover{
    cursor: pointer;
}

.uk-modal-body{
    width: 100%;
    color: white;
    background:#2c3237;
}
.uk-modal{
    padding: unset;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: white;
  
}


.hover-underline-animation:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 20px;
  left: 0;
  background-color: white;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
 
}


@media only screen and (min-width: 900px) {
    #modal-close-default > div > button, #modal-close-default-2 > div > button, #modal-close-default-3 > div > button, #modal-close-default-4 > div > button{
        position: -webkit-sticky; /* Safari */
        position: sticky;
        margin-left: 98.5%;
        padding: unset;
        padding-top: 10px !important;
    }
    .uk-modal-body{
        padding: 10px 30px;
    }
    .hero-content{
        width: 60%;
    }
}
@media only screen and (max-width: 900px) {
    .uk-padding-large{
       padding: 20px;
    }
    h1{
        font-size: 40px;
        line-height: 40px;
    }
    label.theme-switch{
        height: 24px;
        width: 50px;
        margin-top: 10px;
    }
    .slider:before{
        height: 16px;
        width: 16px;
    }
    .uk-navbar-nav>li>a{
        padding: 0 10px;
    }
    .project-container h3{
        font-size: 35px;
    }
    body > nav > div.uk-navbar-right.uk-padding-large.uk-padding-remove-vertical{
        padding-left:0px;
    }
    #contact{
        margin: 10px;
    }
    #modal-close-default > div > button, #modal-close-default-2 > div > button, #modal-close-default-3 > div > button, #modal-close-default-4 > div > button{
        position: sticky;
        left: 100%;
        margin-right: -15px;
    }
}
