*{
    margin:0px;
    padding:0px;
    box-sizing:border-box;

}
body{
    animation: IN 1s;
}
@keyframes IN{
    0%{
        opacity: 0;
        transform: translateY(-100%) ;
    }
    100%{
        opacity:1;
        transform: translateY(0);
    }


}
#bg{
    background-image: url("images/whitebg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} 

.navbar{
    display: flex;
    justify-content:space-between;
    background-color:rgb(43, 44, 44);
    color: aliceblue;
    align-items: center;
    animation: nav-load 1s ease-in-out;
   

}
@keyframes nav-load{
    0%{
        opacity: 0;
        transform: translateY(-100%) ;
    }
    100%{
        opacity:1;
        transform: translateY(0);
    }


}

.sitename{
    font-size: 40px;
    margin-left: 20px;
    font-family: 'Julee', cursive;
    
}

.navbarlinks ul{
    margin: 0px;
    padding: 0px;
    display:flex;



}
.navbarlinks li{
    list-style: none;
}
.navbarlinks li a{
    text-decoration: none;
    color: aliceblue;
    padding:1rem;
    display: block;


}


.main{
    margin:50px;
}
.Div1{
    width:30%;
    
    background-color: rgb(170, 145, 97);
    margin: 20px;
    border-radius:5px ;
    display:inline-block;
    box-shadow: 2px 2px 10px black;
    animation: cards 2s;
    
}
@keyframes cards{
    0%{
        opacity: 0;
        transform: translateY(-100%) ;
    }
    100%{
        opacity:1;
        transform: translateY(0);
    }


}
.Div1:hover{
    transform:scale(1.1);
    

}

.image img{
    width:100%;
    height:50%;
    border-top-left-radius: 5px;
    border-top-right-radius:5px;
    cursor: pointer;
    
}

.title1{
    text-align: center;
    font-family: 'Beau Rivage', cursive;
    font-size: 30px;

}
.info1{
    text-align:center;
}

.button{
    text-align: center;
    margin-top: 10px;
    border-radius: 5px;

    border: none;
    box-shadow: inset 0 0 0 0 rgb(57, 230, 236);
    transition:ease-out .3s;
    outline:none;
    font-family: 'Josefin Slab', serif;
    background-color: rgb(170, 145, 97);
    
}

.link1{
    text-align: center;
    ackground-color: rgb(105, 70, 202);
    font-family: 'Josefin Slab', serif;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius:5px;

}
.link1:hover button{
    cursor: pointer;
    box-shadow: inset 350px 0 0 0 rgb(193, 250, 210);
}