/* Apply Poppins Font across all content */
/* Reset default of webpage to cover entirety */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* background image of the webpage */
.container {
    width: 100%;
    height: 100vh;
    background: 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:0 8%;
    box-sizing: border-box;
}

/* Navigation Bar Header with class navbar */
.navbar {
    height: 12%;
    display: flex;
    align-items: center;
}

/* adjusting the logo & menu icons of the webpage */
.logo {
    width: 50px;
    cursor: pointer;
}

.menu-icon {
    width: 30px;
    cursor: pointer;
    margin-left: 40px;
}

/* positioning the navigation links to the right hand side */
nav {
    flex: 1;
    text-align: right;
}

/* Adjusting the li elements within the nav element */
nav li {
    list-style: none;
    display: inline-block;
    margin-left: 60px;
}

nav li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.row {
    display: flex;
    height: 88%;
    width: 100%;
    align-items: center;
}

.col {
    flex-basis: 50%;
}

h1 {
    color: #fff;
    font-size: 100px;
}

h5 {
    color: #fff;
    text-shadow: 0 0 5px #999;
}

p {
    color: #fff;
    font-size: 12px;
    line-height: 15px;
}

button {
    width: 180px;
    color: #000;
    font-size: 12px;
    padding: 12px 0;
    background: #fff;
    border: 0;
    border-radius: 20px;
    outline: none;
    margin-top: 30px;
}

.card {
    width: 200px;
    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 ease;
}

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

.card p {
    text-shadow: 0 0 15px #000;
    font-size: 9px;
}

.card1 {
    background: url(images/pic-1.png);
}

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

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

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