@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500;600&display=swap");

:root {
	--violet: #857f7d;
	--peach: #d8a48f;
	--light-blue: #c2e0d4;
}

body {
	margin: 0% auto;
	background: url("../background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	font-family: "Montserrat", sans-serif;
	padding: 10%;
	text-align: center;
	max-width: 60%;
}

button {
	padding: 2%;
	width: 125px;
	height: 130px;
	background-color: var(--violet);
	color: white;
	font-weight: 600;
	border: none;
	font-size: 110%;
}

button:hover {
	cursor: pointer;
	background-color: var(--peach);
}
