
body {
    margin: 0px;
    padding: 0px;

}
h1 {
    color:#fff;
    font-size: 100px;
    margin: 0px;

}

p {
    color: #fff;
    font-size: 16px;
    line-height: 18px;
}
.left {
    display:flex;
    height: 88%;
    align-items: center;
    position: absolute;
}


.explore-button {
    width: 180px;
    color: #000;
    font-size: 12px;
    padding: 12px 0;
    background-color: #fff;
    border: 0;
    border-radius: 20px;
    outline: none;
    margin-top: 30px;
}
.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-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: #fff;
    font-size: 13px;
}

.row {
    margin: 10px 0;
}
.column-a {
    width: 200px;
    height: 230px;
    display: inline-block;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    background-image: url(images/pic-1.png);
    background-position: center;
    background-size: cover;
}

.column-b {
    width: 200px;
    height: 230px;
    display: inline-block;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    background-image: url(images/Forbidden\ city.jpg);
    background-position: center;
    background-size: cover;
}

.column-c {
    width: 200px;
    height: 230px;
    display: inline-block;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    background-image: url(images/paris.jpg);
    background-position: center;
    background-size: cover;
}

.column-d {
    width: 200px;
    height: 230px;
    display: inline-block;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    background-image: url(images/grand\ canyon.jpg);
    background-position: center;
    background-size: cover;
}

h5 {
    color: #fff;
    margin: 0px;
}
.column p {
    text-shadow: 0 0 15px #000      ;
    font-size: 8px;
}

.column:hover {
    transform: translateY(-10px);
}