@import url('https://fonts.googleapis.com/css?family=Roboto');

*{
	padding: 0;
	margin: 0;
}
body{
	width: 100%;
	height: 100vh;
	padding: 0;	
}

.wrapper{
	position: relative;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-content: center;
	align-items: center;
	background-image: url("../Assets/M2.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position:center;
	box-sizing: border-box;
}
.note{
	position: relative;
	width: 70%;
	height: 50%;
	box-sizing: border-box;
	font-family: 'Roboto', 'sans-serif';
	font-size: 4em;
	font-weight: 600;
	color: #292E37;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
	align-content: center;
	align-items: center;
}
.row1{
	width: 100%;
	height: 30%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	box-sizing: border-box;
	padding-left: 5%;
	
}
.text{
	width: 50%;
	height: 100%;
	text-align: center;
}
.hearth{
	width: 20%;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	align-content: flex-start;
	justify-content: flex-start;
	align-items: flex-start;
	margin-left: -5%;

}
.image{
	width: 50%;
	height: 100%;
	background-image: url("../Assets/heart.png");
	background-repeat: no-repeat;
	background-size: contain;
}
.row2{
	width: 100%;
	height: 20%;
}
.clock{
	position: relative;
	margin-top: 5%;
	width: 70%;
	height: 30%;
	box-sizing: border-box;
}
@media only screen and (max-width: 600px) {
	.row1{
		height: 20%;
		padding-left: 12%;
	}
	.note{
		font-size: 2rem;
	}
	.text{
		width: 65%;
	}
    .hearth{
    	margin-left: 0;
    	width: 30%;
    }
    .clock{
    	width: 120%;
    	transform: scale(0.7);
    }
}
@media only screen and (max-width: 376px) {
	.row1{
		height: 20%;
		padding-left: 12%;
	}
	.note{
		font-size: 2rem;
	}
	.text{
		width: 70%;
	}
    .hearth{
    	margin-left: 2%;
    	margin-top: 1%;
    	width: 30%;
    }
    .clock{
    	width: 140%;
    	transform: scale(0.7);
    }
}
@media only screen and (max-width: 1025px) {
	.text{
		width: 70%;
	}
    .hearth{
    	margin-left: -10%;
    	margin-top: -1%;
    	width: 30%;
    }
    .clock{
    	width: 140%;
    	transform: scale(0.7);
    }
}
@media only screen and (max-width: 769px) {
	.text{
		width: 70%;
	}
    .hearth{
    	margin-left: 0;
    	margin-top: 1%;
    	width: 30%;
    }
    .clock{
    	width: 140%;
    	transform: scale(0.7);
    }
}
@media only screen and (max-width: 321px) {
	.row1{
		height: 20%;
		padding-left: 12%;
	}
	.note{
		font-size: 1rem;
	}
	.text{
		width: 120%;
	}
    .hearth{
    	margin-left: 1%;
    	margin-top: 0%;
    	width: 40%;
    }
    .clock{
    	width: 160%;
    	transform: scale(0.6);
    }
}