body{
    font-family: 'Dosis', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 2vw;
}
#particles-js{
    height:100%;
    width: 100%;
    background: white;
    position: absolute;
}
.wrapper{
    width: 50%;
    margin: auto;
}
#title{
    height: 120px;
    padding: 0;
    margin: 0;
    background-color: cadetblue;
    text-align: right;
    border: 1px solid black;
    opacity: 0.85;
}
h1{
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: 20px;
    font-size: 5vw;
    margin: 0px;
    padding-top: 15px;
    color: black;
}
h3{
    font-size: 2vw;
    font-weight: bold;
}
a{
    text-decoration: none;
    color: black;
}
/*------------------------------------Menu----------*/
#menupicture{
    height:25px;
}
.dropdown{
float:left;
}
.dropdown .droppoint{
    margin: auto;
    background: cadetblue;
    height: 50px;
    text-align: center;
    border: 0px solid black;
    font-size: 32px;
    min-width: 160px;
    height: 42px;
    
}
.dropdown:hover .droppoint{
    background: white;
    animation-name: changeColor2;
    animation-duration: 0.1s;
    border: 0.1px solid black;
}
.droplist{
    display: none;
    font-size: 2vw;
    position: absolute;
    background: white;
    min-width: 160px;
    border: 0.1px solid black;
}
.droplist a{
    float: none;
    display: block;
    text-align: left;
    padding: 12px 16px;
    text-decoration: none;
    color: black;
    text-align: center;
}
.droplist a:hover{
    background: cadetblue;
    border: 0.1px solid black;
    animation-name: changeColor;
    animation-duration: 0.25s;
}
@keyframes changeColor{
    0%{
        background-color:white;
    }
    25%{
        background:linear-gradient(to right, cadetblue, white,white,white );
    }
    50%{
        background:linear-gradient(to right, cadetblue, cadetblue,white,white );
    }
    75%{
        background:linear-gradient(to right, cadetblue, cadetblue,cadetblue,white );
    }
    100%{
        background-color:cadetblue;
    }
}
@keyframes changeColor2{
    0%{
        background-color:cadetblue;
    }
    25%{
        background:linear-gradient(to right, white, cadetblue,cadetblue,cadetblue );
    }
    50%{
        background:linear-gradient(to right, white, white,cadetblue,cadetblue );
    }
    75%{
        background:linear-gradient(to right, white, white,white,cadetblue );
    }
    100%{
        background-color:white;
    }
}
.dropdown:hover .droplist{
    display: block;
}
.clear{clear:both;}
/*-------------------------------*/
#pictureframe{
    background: black;
    height: 440px;
    border: 2px solid black;
    padding: 0;
}
#textboxsize12{
    text-align: center;
}
#resume{
    background: white;
    height: 100%;
    border: 0.1px solid black;
}
table td{
    text-align: left;
    border: 0.1px solid black;
    padding: 20px;
    background: white;
}
ul{
    list-style-type: circle;
}
/*-------------gallery/ lightbox---*/
.banner{
    width: 100%;
    height: 538px;
    position: relative;
}
#slider{
    width: 100%;
    height: 538px;
    position: absolute;
    overflow: hidden;
}
#next{
    text-align: center;
    line-height:50px;
    color: black;
    width:10px;
    height:50px;
    background-color:cadetblue;
    position: absolute;
    top:205px;
    right:0;
    z-index:99;
    cursor: pointer;
    opacity:.8;
}
#pre{
    text-align: center;
    line-height: 50px;
    color: black;
    width:10px;
    height:50px;
    background-color: cadetblue;
    position: absolute;
    top:205px;
    left:0;
    z-index:99;
    cursor: pointer;
    opacity:.8;
}
.banner:hover #next{
    opacity:1;
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
}
.banner:hover #pre{
    opacity:1;
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
}
#lightbox{
    text-align: center;
    width:100%;
    height:100%;
    background:black;
}
