

* {
    margin: 0px;
    
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #fff7dc;
    
    

}
.menu-area{
    margin-top:50px;
    width:75%;
    margin-left: 75px;


    
}
.menu-area a {
    display : flex;
    justify-content: center;
    gap:10px;
    align-items:center;
    color: #00008b;
    height: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-decoration: none;
    font-size: 20pt;

    
    
}
.menu-area a:hover {
    color : #00008b4d;
    font-size: 22pt;
    font-weight: 600;
    transition: all 0.5s ease;
   

}
.menu-area ul{
    list-style: none;
    display: flex;
    align-items: center;

}
.menu-area ul li {
    position : relative;
    width : 100%;
    text-align : center;

   
    
}


.menuarea li:hover .dropdown-1 li{
    top:0;
    display: block;

}
.dropdown-1 ul li {
    position: relative;
}
.dropdown-1 {

    opacity: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    width:100%;

}
 #catdropdown:hover .dropdown-1 {
    opacity: 1;
    transition: all 0.5s ease;

}
#logoarea{
    position: relative;
    background-color: #00008b;

    width:250px;
    height:60px;
    align-self: center;
    margin-right: 200px;
    background-image: url(meowlogo.png);
    background-size: 90px 70px;
    background-repeat: no-repeat;
    background-position: center center;
}
#logoarea:hover{
    transform: rotate(360deg);
    transition: all 0.5s ease;
}
#main{
   display: flex;
   flex-direction: column;
   margin-left: 70px;
   margin-right: 70px;
   min-height: 1000px;
   background-image: url(bluecatoutline.png);
   pposition: absolute;
   background-repeat: no-repeat;
   background-size: 700px 700px;
   background-position: center center ;
}
.footer{
    width: 100%;
    height:50px;
    margin-top: 80%;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-align: center;
    font-style: italic;
    
}
