@font-face {
    font-family: 'inter';
    src: url('./fonts/Inter18pt-Regular.woff2') format('woff2'),
        url('./fonts/Inter18pt-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
	font-family: 'Inter', sans-serif;
	background-color: #111;
	margin: 0;
	padding: 2rem 1rem;
	color: #fff;
}
header {
	display: flex;
	justify-content: space-between;
	align-items: top;
	margin-bottom: 2rem;
}

.login {
	font-size: 0.9rem;
	background: #fff;
	color: #000;
	border-radius: 6px;
	padding: 0.5rem 1rem;
	text-decoration: none;
	cursor:pointer;
}
h1 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.subtitle {
	font-size: 1rem;
	color: #ccc;
	margin-bottom: 1.5rem;
}

.grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 700px) {

.grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.experience {
	display: flex;
	flex-direction: column;
	background: #1a1a1a;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.experience a {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
}

.experience .image {
	height: 180px;
	
}


.image{
	
	background-size:cover;
	background-position:center center;
	
}

.info {
	padding: 1.2rem;
}

.info h2 {
	margin: 0;
	font-size: 1.3rem;
	margin-bottom: 0.2rem;
}

.artist-name {
	font-size: 1.3rem;
	font-weight: 500;
	color: #ddd;
	margin: 0 0 0.5rem 0;
}

.badge {
	display: inline-block;
	background: #333;
	color: #fff;
	border-radius: 6px;
	padding: 0.2rem 0.6rem;
	font-size: 0.75rem;
	margin: 0.2rem 0.3rem 0.2rem 0;
}

.description {
	margin-top: 0.75rem;
	font-size: 0.9rem;
	color: #bbb;
}

.footer {
	margin-top: 3rem;
	font-size: 0.9rem;
	color: #ccc;
}

.footer strong {
	color: #fff;
}