@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

body {
	background-image: url("background.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: 55% 50%;
	background-color: #FCF0D9;
	background-blend-mode: lighten;
	font-family: "Open Sans", sans-serif;
}

h1 {
	font-family: "Playfair Display", serif;
	color: #BF1D1D;
}

.daybox {
	height: 150px;
	background-color: #FFFEED;
}

.calendario {
	background-color: #FFFEED;
	padding: 10px;
}

.new-month {
	color: #FFFEED;
	background-color: #BF1D1D;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.event {
	color: #FFFEED;
	cursor: pointer;
	background-color: #BF1D1D;
	padding: 2px;
	margin: 1px;
	overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 1; /* number of lines to show */
           line-clamp: 1; 
   -webkit-box-orient: vertical;
}

.event:hover {
	background-color: #941616;
}

.ver-mas-button {
	border: none;
	outline: none;
	padding: 10px;
	background-color: #BF1D1D;
	color: #FFFEED;
}

.ver-mas-button:hover {
	background-color: #941616;
}


.input-text-form {
	max-width: 850px;
}

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