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

body{
    background-color: #0E1014;
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 24px;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 50px;
    background-color: #0E1014;

}

header img{
    display: block;
    margin: 75px 0 0 250px;
    width: 200px;
}

#content-main{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.content-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 60%;
    height: 100vh;
}

.content-section h1{
    font-size: 65px;
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    margin-top: 60px;
   
}

.content-section p{
    width: 792px;
}

.content-section h1 > span{
    color: #9747FF;
}

.content-section .btn {
    width: 340px;
    padding: 15px 20px;
    color: #FFF;
    background-color: #9747FF;
    text-decoration: none;
    border-radius: 36px;
    width: 50%;
    margin: 40px 0;
}

.content-section .btn:hover{
    background-color: #8233E8;
}

.content-section img {
    display: block;
    height: 446px;
    width: 792px;
}
   

@media(max-width: 768px) {

    header{
        margin: 0 16px;
    }

    header img{
        margin: 32px 0 0 16px;
    }
    
    .content-section{
        width: 100%;
    }

    .content-section p {
        width: 648px;
    }

    .content-section .btn{
        width: 50%;
    }
    }

    @media(max-width: 375px) {

        header{
            margin: 0 16px;
        }
        header img{
            margin: 32px 0 0 16px;
        }

        .content-section h1{
            font-size: 40px;
        }
        
        .content-section{
            width: 100%;
        }

        .content-section p {
            font-size: 20px;
            width: 340px;
        }
        .content-section img {
            width: 340px;
            height: 230px;
        }

        .content-section .btn{
            font-size: 20px;
            width: 251px;
        }
    }