@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    position: relative;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.navbar{
    background: transparent;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}

.navbar a{
    text-decoration: none;
}

.navbar a h1{
    font-size: 30px;
    color: #cdc5c2;
}

.navbar a h2{
    font-size: 18px;
    color: #17bc44;
}

.navbar ul{
    display: flex;
}

.navbar ul li{
    list-style-type: none;
    padding: 15px 0px;
    cursor: pointer;
    transition: .1s linear;
}

.navbar ul li a{
/*    color: #333;*/
    font-weight: 50;
    transition: .1s linear;
    font-size: 15px;
}

.navbar ul li:hover{
/*    background: #17bc44;*/
}

.navbar ul li:hover a{
    color: #fff;
}

.content{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 60px;
}
.content .textBox{
    position: relative;
    max-width: 800px;
}

.content .textBox h1{
    color: #fff;
    font-size: 4em;
    line-height: 1.4em;
    font-weight: 500;
}

.content .textBox h2{
    color: #77c10c;
}

.content .textBox p{
    color: #cdc5c2;
}

.content .downloads{
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.content .downloads a{
    text-decoration: none;
    color: #fff;
    background: #77c10c;
    width: 300px;
    padding: 10px 30px;
    margin: 10px 0px;
    border-radius: 0px;
    transition: .2s linear;
}

.content .downloads a:hover{
    background: #87ff2a;
}

.content .downloads a i{
    width: 30px;
}

.content .imgBox img{
    height: 550px;
}

.logo {
  max-width: 50%;
  width: 50%;
  height: 50%;
}

.logo img {
width: 100%;
height: auto;
display: block;
}

.blob{
    height: 450px;
    width: 450px;
    background: #cdc5c2;
    border-radius: 50%;
    position: absolute;
    bottom: -50%;
    z-index: -1;
    right: -20%;
}

.menuIcon{
    height: 50px;
}

.menuIcon{
    position: flex;
    cursor: pointer;
}

@media (max-width: 645px) {
    .topBar{
        display: flex;
        width: 100%;
    }

	.logo {
	  max-width: 50%;
	  width: 100%;
	  height: 100%;
	}
    .menuIcon{
        display: block;
        cursor: pointer;
    }

    .content{
        flex-direction: column;
    }

    body{
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .content .imgBox img{
        height: 400px;
    }
    
    .blob{
        height: 250px;
        width: 250px;
        border-radius: 50%;
        bottom: -50%;
        right: -10%;
    }
}