@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
    box-sizing: border-box;
}

body {
	margin: 0 auto;
    text-align: center;
	background:#fff;
    color: #b0acf6;
    font-family: 'Poppins', sans-serif;
	justify-content: center;
}

header{
    margin-top: 3rem;
}

#header-img{
    max-width: 500px;
    height: auto;
    margin: auto;
    display: block;
    background-color: rgba(206, 199, 199, 0.137);
    border-radius: 15px;
    box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 8px 0 rgb(0 0 0 / 14%), 0 1px 16px 0 rgb(0 0 0 / 12%);
    padding: 1rem;
}

.line-drawing-demo{
    margin-top: 1rem;
}

h1{
    font-size: 4rem;
    margin-bottom: 20px;
    margin-top: 10px;
}

.btn{
	height: 40px;
	width: auto;
	padding: 10px;
  	border: 0;
  	border-radius: 15px;
  	background-color: #b0acf6;
    color: #fff;
  	cursor: pointer;
}

.btn-outline{
    border: 1px solid #b0acf6;
    background-color:white;
    color: #b0acf6;
}

a{
    text-decoration: none;
}

.workflow-img{
    max-width:500px;
}

@media only screen and (max-width:600px){
    .line-drawing-demo{
        display: flex;
    }
    #header-img{
        max-width: 300px;
    }
    .container-img{
        max-width: 300px;
    }
    .workflow-img{
        width:350px;
    }
}