*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body{
    background-color: #f3f3f3;
    overflow: hidden;
}

.talkspacelogo{
    width: 100px;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 8%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid black;
}

.logo{
    display: flex;
    align-items: center;
    font-size: 36px;
    color: #06402B;
    text-decoration: none;
    font-weight: 800;
}

.navbar a{
    font-size: 15px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    margin: 0 20px;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}

.navbar a:hover,
.navbar a:active{
    color: #046704;
    border-bottom: 3px solid #046704;
}

.social-media a i{
    font-size: 24px;
    transition: 0.3s ease;
    color: #222;
}
.social-media, a i:hover{
    transform: scale(1.3);
    color: #046704;
}

.home{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 50px 8% 0;
}

.home-content{
    max-width: 700px;
}

.home-content h1{
    font-size: 60px;
    line-height: 1.6;
}

.home-content h3{
    font-size: 40px;
    color: #046704;
}

.home-content p{
    font-size: 16px;
    margin: 15px 0 30px;
    font-weight: 500;
}

.btn{
    display: inline-block;
    padding: 10px 20px;
    text-align: left;
    background-color: #222;
    border: 2px solid #ADFF2F;
    border-radius: 6px;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease;
    letter-spacing: 1px;
    font-weight: 600;
}
.btn:hover{
    transform: scale(1.05);
}