html {
    
    
    margin:0; 
    padding:0; 
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: black;
}

.homeWrapper {
    background: black;
    position: relative;
    display: flex;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
    
    background-image: url('logo.png');
    background-size: 74%;
    padding-left: 8%;
    padding-right: 8%;
    overflow: hidden;
    background-position: 50% 47%;
    background-repeat: no-repeat;
    animation-name: transition;
    animation-duration: 1s;
    animation-iteration-count: 1;
}
.me {
    position: absolute;
    left: 60%;
    top: 9px;
    border: 10px solid #841818;
   
}
.twitterLogo,.githubLogo,.linkedinLogo {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 10px solid #841818 ;
    background: black;
    align-self: center;
    
}
.twitterLogo{
    top: 500px;
    left: 800px;
}
.githubLogo{

    top: 500px;
    left: 950px;
}
.linkedinLogo {
    top: 500px;
    left: 1100px;

}
.navbar {
    display: flex;
    align-items: center;
    background:#e0bb20;
    height: 80px;
    z-index: 1;
    align-items: center;
    padding: 10px;
    width: 100%;
}
    
.twitterLogo:hover, .githubLogo:hover,.linkedinLogo:hover {
    transition: 0.5s;
    background: white;
}    

.logo {
    cursor: pointer;
    margin: 30px 0;
    box-shadow: 0 0 60px black;
    
}
.menuIcon {
   width: 50px;
   cursor: pointer; 
   display:none;
}
nav{
    flex: 1;
    text-align: right;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}
.menuItem{
    position: relative;
    top: 25%;
    background:#841818 ;
    color: #fafafa;
    box-shadow: 0 5px 20px #841818;
    height: 70%;
    width: 25%;
    
    margin:3%;
    font-size: 150%;
    text-decoration: none;
    overflow: hidden;
    }
    .menuItem:hover {
        background: #e0bb20;
        transition: 0.5s ease-in-out;
        cursor: pointer;
    }
    .greeting{
        position: relative;
        color:#841818 ;
        align-self: center;
        left: 30%;
        bottom:13em;
        background: #e0bb20;
        border: 10px dotted black;
        text-shadow:-10px 0px 15px black;
    }
    .upArrow{
        position:absolute;
        color:black;
        background: white;
        opacity: 0;
        animation-name: appear;
        animation-duration: 5s;
        animation-iteration-count: 1;
        top: 26%;
        left: 60%;
        border: 5px solid black;
        border-radius: 10%;
        transform: rotate(-10deg);
    }
.hide{
    display: none;
}
.aboutMe {
   display: hidden flex;
    position: relative;
    background: #e0bb20;
    justify-content: center;
    height: 100vmin;
    animation-name: transition;
    animation-duration: 1s;
    animation-iteration-count: 1;
    
    
}
.aboutMe>p {
    position: relative;
    text-align: center;
    font-size: 3vmin;
    margin: 0;
    top: 15%;
}
.aboutTitle {
    position: relative;
    background:#841818 ;
    color: white;
    text-align: center;
    height: 10%;
    width: 80%;
    top: 15%;
    left: 10%;
    
    font-size: 6vmin;
   
    
    
}
.projectsWrapper {
display:hidden flex;
justify-content: center;
animation-name: transition;
    animation-duration: 1s;
    animation-iteration-count: 1;

}
h3 {position: absolute;
    color: white;
    margin: auto;
    left: 46%;
    top: 30%;
    
}
h4 {position: absolute;
    color: white;
    margin: auto;
    left: 56%;
    top: 50%;
    
}

.projectList {
    position: absolute;
    color: black;
    font: 20px;
    height: 600px;
    width: 400px;
    background-color: #e0bb20;
    top: 25%;

}
.calcBase {
    position: relative;
    
    background: black;
    height: 500px;
    width: 400px;
    margin: auto;
    justify-content: center;
    padding: 20px;
    border: 10px solid blue;
  
   box-shadow: 0px 0px 43px 17px rgba(153,153,153,1);
   transform: scale(.2);
}
.calcBase:hover {
    transform: scale(1);
}
.calDisplay {
    position:relative; 
    
    height: 50px;
    width: 400px;
    justify-content: center;
    text-align: right;
    background: lime;
    border: 5px solid white;
overflow: hidden;}
    #displayText {
        position: relative;
        color: red;
        margin: auto;
       font-size: 30px;
       
       
        
    }
    .btns {
        position: relative;
        display:grid;
        grid-template-columns: auto auto auto;
        height: 400px;
        width: 390px;
        padding-top: 20px;
        left: 10px;
        border-bottom: 1px solid #999;
        
        grid-template-columns: 1fr 1fr 1fr 1fr;
        
    }
    .btns > .btn{
        font-size: 20px;
        background: yellow;
        
        
    }
    .btn:hover {
        background-color: #323330;
        color: white;
        transition: 0.5s ease-in-out;
        cursor: crosshair;
    }
    #equal {
        color: red;
    }
    .eyeblink {display: flex;
        position: absolute;
        background: black;
        width: 10vmin;
        height: 10vmin;
        border-radius: 50% ;
        border: 10px solid black;
        left: 47%;
        top: 330px;
        justify-content: center;
        align-items: center;
        animation-name: eyeMove;
        animation-duration: 4s;
        animation-iteration-count: infinite;
        
    }
    .retina {
        position: relative;
        background: black;
        height: 9vmin;
        width: 1vmin;
        
        
    }
@keyframes eyeMove {
    10% {left: 46%;}
    15%{left:45%;}
    20%{left:44%;}
    25%{left:45%;}
    30% {left:46%;}
    35%{left:47%;}
    40%{left:48%;}
    45%{left:49%;}
    50%{background: radial-gradient(yellow,yellow,red,red);
        left:48%;}
    
    
    100%{left:47%}



}

@keyframes transition {

    0%{transform: scaleX(.1);
        transform: scaleY(0)}
}
@keyframes appear {
    0%{opacity: 1;}
}


@media only screen and (max-width:700px){
    nav ul{
       width:100%; 
       position: absolute;
       top: 75px;
       right: 0;
       z-index:2;
    }
    nav ul li{
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .menuItem {
        background: transparent;
        box-shadow: none;
    }
    .menuItem:hover {
        transition: 0.5s;
        background: black;
        color:#841818;
    }
    
    .menuIcon{
        position: relative;
        display: block;
        bottom: 0px;
        
    }
    #menuList{
        position: relative;
        overflow: hidden;
        transition: 0.5s;
        left: 75px;
        top: 12px;
        background:#841818;
        width: 77px;
        margin: 0;
        padding-left: 2px;
    }
    .eyeblink{display: none;}
    .logo{position: relative;
          bottom:1px;
          right: 10px;}
    .homeWrapper{display: flex;
        position: absolute;
        
        background-image: url('');
        
    }
    .aboutMe{
        position: relative;
        display: hidden flex;
        height: 100vmin;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
        align-items: center;

        
        top: 20px;
       
    }
    .aboutMe>p{
        position: absolute;
        top: 100px;
    }
    .calcBase{
        position: relative;
        right: 100px;
        bottom: 70px;
    }
    .calcBase:hover {
        transform: scale(.5);
    }
    .upArrow {
        display:none;
    }
    .greeting {
        display: none;
    }
    .greetingMobile {
        position: relative;
        color: white;
        left: 40px;
        font-size: 50px;

    }
    .twitterLogo {
        position: relative;
        width: 50px;
        height: 50px;
        left: 0px;
        top: 250px;
        border: 5px solid #841818 ;
       
        
        
    }
    .githubLogo { 
        position: relative;
        width:50px;
    height: 50px;
    left: 10px;
    top: 250px;
    border:5px solid #841818;
}
.linkedinLogo {
    position: relative;
    width:50px;
    height: 50px;
    left: 20px;
    top: 250px;
    border: 5px solid #841818;
    
}
.me{
    height: 80px;
    width: 80px;
    top: 200px;
    left: 140px;
}
.hide {display: none;}
.projectsWrapper>h4 {
    bottom: -200px;
}
.projectsWrapper>h3 {
    position: relative;
    top: 100px;
    left: 40px;
    right: 0px;
}
}