
header{
    /* background-image: url(/images/donuts.jpg); */
    
    /*box-shadow: 0 12px 16px rgba(0,0,0,0.24),0 17px 50px rgba(0,0,0,0.19);*/
    overflow: hidden;
}

header canvas{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;

}

#gradient,#canvasContainer,#backgroundContainer{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#canvasContainer{
    z-index: -2;
}

#backgroundContainer{
    z-index: -4;
    background:url(/images/donuts.jpg);
    background-size: cover;
    background-position: 50% 50%;
}

#gradient {
    z-index: -1;
    background: linear-gradient(rgba(80, 80, 80, 0.5), rgba(255,255,255,0.5));

}

header *{
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

#myfields{
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24) inset;
}


nav{
    background: #fae500 !important;
    /* background: #d2dd31 !important; */
    
    
}

@media(min-width:768px) {
    section {
        padding: 75px 0;
    }

}

#content{
    background-color: #00b8ff;
    padding: 50px 0;
}

.green-box{
    text-decoration: none !important;
    color:white;
    position: relative;
    text-align: center;

    /*background-color: #ff53af;
    width: 100%;
    display: block;
    padding: 30px;
    border-radius: 15px;
    cursor: pointer;
    transition-duration: 0.4s;
    margin: 10px;
    transition: all .41s; */
    font-weight: 900;
    font-family: 'Annie Use Your Telescope';
}

.green-box p{
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 100% 100%;
    transform: translate(-50%, -50%);
    transition: all .2s;
}

.green-box:hover p{
    transform: scale(2);
}




.green-box:hover{
    /* background-color: #20d800; 
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    */
    color: black;
    


}

.modal.in{
    display: block;
}

.modal .container{
    height :100%;
}

.modal-content{
    overflow-y: auto !important;
    height: 100vh !important;
    padding: 0;
}

.porfile-container{
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
}

.porfile-container img{
    width: 100%;
    transform: scale(2);
    transform-origin: 56% 32%;
    transition: .4s;
}

.porfile-container img:hover{
    transform: scale(4);
}

/* container */
.portfolio-link{
    position: relative !important;
    width: 345px;
    height: 230px !important;
}

/* image */
.portfolio-link .image-container{
    height: 230px;
}

.portfolio-link img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
    transform: scale(1.5);
}

.portfolio-link.d3 img{

    transform: scale(1);
}

@media (min-width: 992px){
    .portfolio-link img{
        height: 200px !important;
    }
}

.portfolio-link:hover img{
    transform: scale(2);
}

/* overlay */
.portfolio-hover{
    opacity: 1;
}


.portfolio-item{
    margin: 15px 0;
}

.portfolio-caption{
    background-color: #efefef;
    padding: 5px 13px;
}

.project-container {
    position: relative;
    overflow: hidden;
}

.project-image {
    display: block;
    width: 100%;
    height: auto;
}

.project-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #1ee3e7;
}

.project-container:hover .project-overlay {
    opacity: 1;
}

.project-text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}


#whoiam p{
    margin:20px 0;
}




#whoiam hr{
    border: 1px solid green;
}

.col-white{
    color:white;
}

video{
    margin: 20px 0;
}









/* BURGER BUTTON */

.menu-btn{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition:all .5s ease-in-out;

    float: right;
    margin: 8px 15px 8px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.menu-btn.small{
    width: 40px;
    height: 40px;
}

.menu-btn.small .menu-btn_burger,
.menu-btn.small .menu-btn_burger::before,
.menu-btn.small .menu-btn_burger::after{
    width: 30px;
    height: 4px;
}

.menu-btn:hover{
    background-color: #ddd;
    cursor: pointer;
}

.menu-btn_burger{
    width: 40px;
    height: 6px;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;

    box-shadow: 0 2px 5px rgba(255,201,47,.2);
    transition: all .5s ease-in-out;
}
 
.menu-btn_burger::before,
.menu-btn_burger::after{
    content: '';
    position: absolute;
    width: 40px;
    height: 6px;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(255,201,47,.2);
    transition: all .5s ease-in-out;
}

.menu-btn_burger::before{
    transform: translateY(-1rem);
}

.menu-btn_burger::after{
    transform: translateY(1rem);
}

.menu-btn.open .menu-btn_burger{
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
}

.menu-btn.open .menu-btn_burger::before{
    transform: rotate(45deg) translate(35px, -35px);
}
.menu-btn.open .menu-btn_burger::after{
    transform: rotate(-45deg) translate(35px, 35px);

}

@media(min-width:768px) {
    .menu-btn {
        display: none;
    }
}