*{
    margin: 0;
    padding: 0;
}


.header{
    height: 15%;
    width: 100%;
    background-color: black;
    float: right;
}

.header img{
    height: 10%;
    width: 10%;
    padding: 10px 20px;
}

.nav{
    height: 60px;
    width: 100%;
    background-color: black;
    float: right;
    color: goldenrod;
}

.nav ul{
    list-style: none;
    justify-content: end;
    display: flex;
    padding: 10px 10px;

}

.nav ul li{
    padding: 0px 20px;
    margin-right: 28px;
}

.nav ul li:hover{
    transform:scaley(2);
}



.parent{
    height: 65vh;
    width: 100%;
    background-color: gray;
    display: flex;
}

.child1{
    height: 65vh;
    width: 35%;
    background-color: black;
    color: goldenrod;
    font-weight:800; 
    
}

.child2{
    height: 65vh;
    width: 65%;
    background-color: green;
    }

 .child2 img{
    height: 100%;
    width:100%;
 } 
 
 button{
    background-color: yellow;
    padding: 10px 30px;
    margin: 20px 10px;
    border: 1px solid white;
    border-radius: 20px;

 }

 button:hover{
    background-color:goldenrod;
    border: black;
    transform: scaley(1);
 }

 p{
    margin: 30px 5px;
 }

 .footer{
    height: 10vh;
    width: 100%;
    background-color: gray;
    color: black;
 }

 .footer h3{
    text-align: center;
    padding: 20px 0px;
 }

 .footer ul li{
    display: inline;
    padding: 0px 30px;
    line-height: 10vh;
    font-size:40px;
    font-weight: bolder;
    

}




/* MEDIA QUERY*/
 @media (max-width:600px) {
    
        .nav{
            height: 40px;
            width: 100%;
            background-color: goldenrod;
            float: right;
            color: white;
        }
        
        .nav ul{
            list-style: none;
            justify-content: center;
            display: flex;
            padding: 2px 5px;
        
        }
        
        .nav ul li{
            padding: 7px 4px;
            margin-right: 3px;
            font-size: small;
        }
        
        .nav ul li a{
            color: goldenrod;
        }
        


        .parent{
            height: 65vh;
            width: 100%;
            background-color: gray;
            display: flex;
            flex-direction: column;
        }
        
        .child1{
            height: 70vh;
            width: 100%;
            background-color: black;
            color: goldenrod;
            font-weight:800;
            }

         .child1 h1{
            margin: 20px 0px;
         }   
        
        .child2{
            height: 70vh;
            width: 100%;
            background-color: green;
            }
        
         .child2 img{
            height: 100%;
            width:100%;
         } 
         
         button{
            background-color: goldenrod;
            padding: 6px 10px;
            margin: 0px 10px;
            border: 2px solid white;
            border-radius: 20px;
            cursor: pointer;
         }
        
         p{
            margin: 25px 5px;
            font-size: small;
         }
        
         .footer{
            height: 15vh;
            width: 100%;
            background-color: black;
            color: goldenrod;
            
         }
        
         .footer h3{
            text-align: center;
            padding: 20px 0px;
         }

         .footer ul li{
            display: inline;
            padding: 0px 20px;
            line-height: 6vh;
            font-size:20px;
            font-weight: bolder;
            
    }

    .foot{
        margin-top: 50px;
    }

    .footend{
        background-color: black;
        color: goldenrod;
        text-align: center;
    }
 }

 