@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

.container{
    height: 100vh;
    width: 100vw;
    background-image: url(./images/image1.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.navbar{
    width: 88%;
    margin: auto;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap{
    display: flex;
    align-items: center;
}

.logo{
    width: 64px;
    margin-right: 10px;
    cursor: pointer;
}

.logo-wrap h3{
    font-weight: 400;
    font-size: 30px;
    color: rgb(56, 61, 65);
}

.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 15px;
}

.navbar ul li a{
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

.content{
    width: 100%;
    position: absolute;
    top: 30%;
}

.left-col{
    margin-left: 6%;
}

.left-col h1{
    font-size: 90px;
    color: white;
    line-height: 110px;
    float: left;
    text-shadow: 0 5px 7px rgba(0, 0, 0, 0.6);
}

.right-col{
    float: right;
    text-shadow: 1px 1px 2px gray;
    margin-right: 26%;
    margin-top: 120px;
    display: flex;
    align-items: center;
}

.right-col p{
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-right: 15px;
}

#icon{
    width: 80px;
    cursor: pointer;
}