@charset "utf-8";
/* Authour: Jiaern
Date: 3 October 2023*/

/* Element Selector */

h1 {
	color:grey
}

/* Class Selector */

.nav-link{
	text-decoration: none; 
	color: dimgrey
}

.list{
	list-style: none;
}

/* ID Selector */

#section-title{
	font-weight: bold
}

/* Descendant selector */

header ul li{
	display:inline;
	margin-right: 30px;
}

/* Child Selector */

ul.list > li {
	font-style: italic;
	
}
/* Atribute Selector */
input[type="text"]{
	border: 1px solid #E73235;
	background:#FFF2F2
}

/* Pseudo-Class Selector */

a:hover {
	color: red;
	letter-spacing: 2px;
	text-transform:uppercase;
	font-weight: bolder;
	font-size: 20pt;
}

/* Pseudo-Element Selector */

p::first-letter{
	font-weight: bold;
	font-size: 30pt;
}
