*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.container{
    width: 100%;
    height: 100vh;
    /* background-image:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),url(images/background.png) ; */
    background: #E1BD61;
    background-position: center;
    background-size: cover;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
}

.navbar{
    height: 12%;
    display: flex;
    align-items: center;

}
.logo{
    width: 50px;
    cursor: pointer;
}
.menu-icon{
    width: 30px;
    cursor: pointer;
    margin-left: 40px;
}
nav{
 flex: 1;
 text-align: right;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-left: 60px;
}
nav ul li a{
    text-decoration: none;
    color: #13110C;
    font-size: 13px;

}
.row{
    display: flex;
    height: 88%;
    align-items: center;
}
.col{
    flex-basis:50% ;

}
h1{
    color: #13110C;
    font-size: 100px;
}
p{
    color: #13110C;
    font-size:11px;
}
button{
    width: 180px;
    color: #E1BD61;
    font-size: 12px;
    padding: 12px 0;
    background: #13110C;
    border: 0;
    border-radius: 20px;
    outline: none;
    margin-top: 30px;
    cursor: pointer;


}
.card{
    width: 230px;
    height: 230px;
    display: inline-block;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    background-position: center;
    background-size: cover;
    transition: transform 0.5s ;
}
.card1{
    background-image: url(./images/pic-1.jpg);
}

.card2{
    background-image: url(./images/pic-2.jpg);
}

.card3{
    background-image: url(./images/pic-3.jpg);
}

.card4{
    background-image: url(./images/pic-4.jpg);
}

.card:hover{
    transform: translateY(-10px);

}
h5{
    color: white;
    text-shadow: 0 0 5px #999;
}
.card p{
    text-shadow: 0 0 15px white;
    font-size: 8px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
.mycontainer {
    width: 80%;
    margin: 0 auto;
}
.mycontainer p{
    color: white;
}