p, strong, b, li{
	font-family: Arial;
}

p{
	color:#333;
}

li{
	margin-bottom: 10px;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;

	background-color: #dddcdc;

	margin:0;
}

header {
	display: flex;

	margin-bottom:50px;
	padding:0;

	width: 100%;
	height: 60px;

	top:0px;

	align-items: center;

	background-color: skyblue;

	box-shadow: 1px 1px 5px #696969;
}

header a{
	text-decoration: none;
}

header h3{
	font-size:25px;

	margin-left:80px;

	color:rgb(116, 88, 244);
	text-shadow: 1px 1px 1px rgb(43, 12, 179);
	letter-spacing: 2px;
}

header h3:hover{
	color:rgb(93, 66, 217);
	text-shadow: none;
}

main{
	flex:1;

	width: 700px;

	top:50px;

	margin:auto;
	padding:10px;

}

@media (max-width: 720px) {
  main {
    width: calc(100% - 20px);
  }
}



/*ESTILO GLOBAL PARA ESTANDIRIZAR:*/

section{
	display: flex;
	flex-direction: column;
    margin-bottom:50px;
    padding:20px;

    width: calc(100% - 40px);

}

.section-center{
	align-items: center;
}

/*
GOOGLE FONTS:
*/
.pacifico-regular {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

.bungee-regular {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-style: normal;
}