@font-face {
  font-family: 'SF-UI-Display'; /* Este es el nombre que le das a la fuente */
  src: url('./fonts/sfui.woff') format('woff');
}

@font-face {
  font-family: 'Montserrat'; /* Este es el nombre que le das a la fuente */
  src: url('./fonts/montserrat.woff') format('woff');
}

@font-face {
  font-family: 'Monument'; /* Este es el nombre que le das a la fuente */
  src: url('./fonts/monument.woff') format('woff');
}

body{
	margin: 0;
	font-family: 'SF-UI-Display';
    background-color: white;
}

header{
	font-family: 'SF-UI-Display';
	margin: 0;
	display:flex;
	min-height: 75px;
	background-color: black;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}

footer{
	background-color: black;
}

.logo{
	display: flex;
	align-items: center;
}

.logo img{
	height: 50px;
	margin-right: 20%;
    margin-left: 50%;
    border-radius: 50%;
}

a{
	text-decoration: none;
	color: white;
}

nav a{
	font: 'Montserrat'; 
    font-weight: 600;
	padding-right: 40px;
}

nav a:hover{
	color: darkgrey;
}

@media (max-width: 700px){
	header{
		flex-direction: column;
	}
	nav{
		padding: 10px 0px;
	}
}

p{
	margin-bottom: 10px;
	margin-left: 5%;
	margin-right: 5%;
	margin-bottom: 5%;
}



.item{
    border-radius: 10px;
}

.item:hover{
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.20);
}

.item img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: all .5s;
}

.name{
	padding-top: 5%;
	padding-bottom: 5%;
	text-align: center;
	font-family: 'Monument';
	font-size: 20pt;
	background-image: url('./img/estadio_ui.png');
	background-position: bottom;
	background-size: cover;
	color: white;
}

.details{
	padding: 5%;
	font-size: 15pt;
	text-align: center;
}

footer a img{
	width: 30px;
	padding: 30px;
}

figure img{
	width: 100%;
}

.container-items{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
	padding-bottom: 3%;
}

.items{
	min-width: 100%;
}

h1{
	margin-top: 5%;
	margin-left: 5%;
}

h2{
		margin-top: 5%;
	margin-left: 5%;
}

.separador{
	display: flex;
  	gap: 20px;
  	max-width: 90%; 
}

.separador img {
  max-width: 50%;
  height: auto;
}

.texto {
  flex: 1;
}