@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,400&family=MuseoModerno:wght@300;700;900&family=Roboto:wght@400;700&display=swap');

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

html,
body,
section{
	width: 100%;
}

body{
	font: 14px/1.4 'Roboto', sans-serif;
	display: flex;
  justify-content: center;
	align-items: center;
	
}


.menu{
	border: 2px solid #000000;
	border-radius: 30px;
	width: 400px;
	padding: 15px;
	position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

h1{
	font: 400 24px/1 'MuseoModerno', cursive;
	text-align: center;
	margin-bottom: 15px;
}

a{
	text-decoration: none;
	color: inherit;
}

.menu-container{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
}

ul{
	list-style-type: none;
	margin: 0 0 0 10px;
}

li{
	margin-bottom: 10px;
}

.home{
	display: flex; 
	justify-content: center; 
	align-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid #000000;
	border-radius: 50%;
}