html {
	font-size: 16px
}

p {
	font-size: clamp(1rem,2.5vw,1.3em);
	line-height: 1.6;
	color: #000;
	margin-bottom: 20px
}

.links-container {
	display: flex;
	flex-direction: column;
	gap: 20px
}

.nav-list {
	list-style: none;
	display: flex;
	justify-content: space-around;
	padding: 0;
	margin: 0
}

.nav-list li a {
	text-decoration: none;
	color: #333;
	font-weight: 400;
	transition: color .3s
}

.nav-list li a:hover {
	font-weight: 700;
	color: #002869
}

.about-link::before,.homes-link::before,.journal-link::before,.sources-link::before {
	content: "";
	display: inline-block;
	width: clamp(.82rem,2.5vw,1.1em);
	height: clamp(.82rem,2.5vw,1.1em);
	background-image: url(18.svg);
	background-size: contain;
	background-position: center;
	margin-right: 4px;
	vertical-align: bottom
}

.about-link::before,.journal-link::before,.sources-link::before {
	background-image: url(pen.svg)
}

.about-link::before,.sources-link::before {
	background-image: url(data.svg)
}

.about-link::before {
	background-image: url(users.svg)
}

body,h1 {
	color: #000;
	margin: 0
}

h1 {
	font-family: "Trattatello";
	font-size: clamp(2rem,16vw,4rem);
	text-align: center;
	position: fixed;
	top: 35px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -10;
	transition: opacity .5s ease-out;
	width: 100%;
	max-width: 84%
}

body {
	font-family: "Cuatro",sans-serif;
	background-color: #888;
	padding: 0;
	display: flex;
	align-items: center;
	height: 100%;
	overflow-x: hidden;
	flex-direction: column
}

a:not(.no-resize) {
	font-size: clamp(1rem,2.5vw,1.3em)
}

header {
	background-color: rgba(162,162,162,.96);
	box-shadow: 0 2px 5px rgba(0,0,0,.1);
	font-size: clamp(.82rem,2.5vw,1.1em);
	padding: 8px 20px;
	width: 82%;
	position: fixed;
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	top: 0;
	z-index: 1000
}

h2 {
	font-size: clamp(1.4rem,8vw,2rem)
}

.container {
	max-width: clamp(80%,60vw,60%);
	width: 100%;
	padding: 0 clamp(20px,4vw,30px);
	text-align: left;
	background-color: #a9a9a9;
	border-radius: 15px;
	box-shadow: 0 4px 10px rgba(0,0,0,.1),0 8px 20px rgba(0,0,0,.05);
	margin-top: 150px;
	margin-bottom: 20px
}

.songs {
	position: relative;
	overflow: hidden;
	width: 70%;
	padding-top: 39.375%
}

.responsive-iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%
}

p+p {
	margin-top: 20px
}