@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:ital,wght@0,200;0,400;0,600;0,700;1,400&display=swap");

:root {
	/* Fonts */
	--primary-font: "Poppins", sans-serif;
	--secondary-font: "Open Sans", sans-serif;
	/* Colors */
	--pink: hsl(322, 100%, 66%);
	--light-pink: hsl(321, 100%, 78%);
	--very-dark-cyan: hsl(192, 100%, 9%);
	--very-pale-blue: hsl(207, 100%, 98%);
}
.body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
}
.font_size{
    font-size: 18px;
    margin-top: 30px;
}
.img_logo{
    width: 100%;
    max-width: 240px;
    height: auto;
}

.top_margin{
    margin-top: 60px;
}
.text_box{
	height: auto;
	width: auto;
	max-width: 450px;
}
.box{
	display: flex;
	justify-content: center;
	align-items: center;
}
.data_counting{
    margin-top: 60px;
    margin-bottom: 60px;
}
.bg_color{
    background-color: hsl(207, 100%, 98%);
}
.text-pale {
	color: grey;
	font-family: var(--secondary-font);
}
.footer_color{
    background-color: hsl(192, 100%, 9%);
	padding-bottom: 50px;
}
.img_width1{
    width: 100%;
    height: auto;
}
.img_width2{
    width: 100%;
    max-width: 430px; /* max-height: 350px; */
    height: auto;
}
.screen_mockup1{
    padding-left: 150px;
    padding-right: 5px;
    justify-content: space-evenly;
    align-items: center;
}
.screen_mockup2{
    padding-right: 150px;
    padding-left: 5px;
}
.button1 {
	color: var(--pink);
	background: white;
	border-radius: 25px;
	border: solid 2px var(--pink);
	width: 100%;
    max-width: 150px;
	height: 100%;
	max-height: 40px;
	box-shadow: 1px 1px 15px 0px rgba(245, 198, 222, 1);
	cursor: pointer;
}
.button1:hover {
	color: var(--light-pink);
	border: solid 2px var(--light-pink);
}
.button2 {
	background: var(--pink);
	color: white;
	border: none;
	width: 95%;
    max-width: 340px;
	height: 52px;
	border-radius: 25px;
	font-weight: 600;
	font-family: var(--secondary-font);
	box-shadow: -7px 9px 10px -3px rgba(189, 174, 174, 0.75);
	cursor: pointer;
}
.button2:hover {
	background: var(--light-pink);
	transition: 0.2s;
}
.form-input {
	height: 39px;
	width: 300px;
	border: none;
	border-radius: 5px;
	padding-left: 7px;
}
.subscribe-button {
	background: var(--pink);
	border: none;
	border-radius: 5px;
	padding: 7px 26px;
	cursor: pointer;
}
.subscribe-button:hover {
	background: var(--light-pink);
	transition: 0.2s;
}

.social {
	margin-top: 50px;
}
.social-icon {
	border-radius: 9px;
	background-color: white;
	width: 40px;
	margin-right: 18px;
	cursor: pointer;
}
.social-icon:hover {
	border-radius: 9px;
	background-color: rgb(59, 186, 245);
	transition: 0.2s;
}
