*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.contenair{
    height: 100vh;
    width: 100%;
    background-image: url(./images/Group\ 28.png);
    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{
    cursor: pointer;
}
.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 15px;
}
.navbar ul li a{
    text-decoration: none;
    color: aliceblue;
    font-size: 15px;
}
.content{
    width: 100%;
    position: absolute;
    top: 30%;
}
.left-col{
    margin-left: 6%;
    margin-top: 4%;
}
.left-col h1{
    font-size: 40px;
    color: aliceblue;
    line-height: 50px;
    float: left;
}
.right-col{
    float: right;
    margin-right: 6%;
    margin-top: -5px;
    display: flex;
    align-items: center;
}
.right-col p{
    font-size: 18px;
    color: aliceblue;
    font-weight: 400;
    margin-right: 15px;
}
#icon{
    width: 80px;
    cursor: pointer;
}
footer{
    background: #B285E5;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}
footer span a{
    color: #01D3DE;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}