*{
    margin: 0;
    padding: 0;

}
html,body{
        width: 100%;
        height: 100%;
        font-size: 14px;
        font-weight: normal;

}
.background{
    width: 100%;
    height:100%;
    background-image: url(9.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; 
    overflow-y:auto; 
}
.nav{
    width: 350px;
    height:auto ;
    position: absolute;
    top: 20%;
    left: 0;
}
.nav a{ 
    text-decoration: none;
    font-size: 28px;
    font-family: verdana; 
    font-weight: bold;
    height: 90px;
    margin: 5px 0;
    float: left;
    display: inline-block;
    background-color: red;
    color: white;
    line-height: 90px;
    text-align: center;
    transition: 300ms;
}

a.active, .nav a:hover{
    background-color: white;
    color: black;
    width: 100%;
}
.a{
    width: 95%;
}
.b{
    width: 75%;
}
.c{
    width: 70%;
}
.content{
    position: absolute;
    width: 930px;
    min-height: 500px;
    height: auto;
    /*background-color:red ;*/
    right: 0;
    top: 10%;
}
.index{
    position:absolute;
    right: 0;
    bottom: -50px;
    color: white;
    font-family: verdana;
   
}
.index h1{ 
    font-size: 95px; 
    padding-right:90px ;
    border-bottom: 1px solid white ;
    text-transform: uppercase ;
}
.index h3{
    font-size: 28px;
    padding:5px 0 ;
    opacity: 0.6;
}
.aboutme{
  
    position:absolute;
    left: 0;
    top: 10px;
    color: white;
    font-family: Century Gothic;
    padding: 0 60px;
    display:none ;
}
.aboutme p{
    margin-top:25% ;
    font-size:20px ;
    line-height: 30px;
    color:red;
}
.gallery{
    position:absolute;
    left: 0;
    top: 10px;
    color: white;
    padding: 0 60px;
    display: none;
}
.gallery .image{
    width: 31%;
    margin:1% ;
    float: left;
}
.image img{
    width:100% ;
    height:50% ;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    transform: scale(1);
    -webkit-transform: scale(1);
}
.image img:hover{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}