@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400);

@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&family=Geist+Mono:wght@100..900&display=swap');

*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body{
	font-family: 'Source Sans Pro', sans-serif;

}

h1 {
text-align: center;

padding-top: 12vh;
}

h1 span{
	background-color:rgb(215, 205, 173, 0.8);
	font-family: "Geist Mono", monospace;
	font-optical-sizing: auto;
	font-weight: 900;
	font-style: normal;
	font-size: 50px;
	font-style: normal;
	color: #424242;

}
nav{
	position: fixed;
	top: 50%;
	left: 50%;
	width: 100%;
	text-align:center;

	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	
	&:after {
		content:"";
		display:table;
		clear:both;
	}
	
	ul{
		li{
			list-style: none;
			display: inline-block;
			
			
			a{
				display: block;
				padding: 10px 40px;
				text-decoration: none;
				font-size: 18px;
				position: relative;
				color: fade(rgb(217, 217, 217), 80%);
				transform: translateX(-15%);
				border-radius: 50px;
				width: 130%;
				text-align: center;
				transition-duration: 0.25s;
				
				&:hover{
					color: rgb(223, 223, 223);
				}
			}
      
			
			&.active{
				a{
					color: rgb(0, 0, 0);
				}
			}
			
			&:nth-child(1){
				a{
					background-color: #74ACDF;
				}
			}
			
			&:nth-child(2n){
				a{
					background-color: #ffffff;
				}
			}
			
			&:nth-child(3n){
				a{
					background-color: #F6B40E;
				}
			}
			
			&:nth-child(4n){
				a{
					background-color: #ffffff;
				}
			}
			
			&:nth-child(5n){
				a{
					background-color: #74ACDF;
				}
			}
		}
	}
	
	.dot{
		background-color: red;
		width: 6px;
		height: 6px;
		position: absolute;
		bottom: -20px;
		left: 0;
		border-radius: 50%;
		transition-duration: 0.5s;
	}
}

.btn-flotante {
	font-size: 16px;
	text-transform: uppercase;
	font-family: "Geist Mono", monospace;
	font-optical-sizing: auto;
	font-weight: bold;
	color: #e0fdc4;
	border-radius: 5px;
	letter-spacing: 2px;
	background-color: #74ACDF;
	padding: 18px 30px;
	position: fixed;
	bottom: 40px;
	right: 40px;
	transition: all 300ms ease 0ms;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	z-index: 99;
	text-decoration: none;
	border-radius: 40%;
  }
  .btn-flotante:hover {
	background-color: #F6B40E;
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(-7px);
  }
  @media only screen and (max-width: 860px) {
	.btn-flotante {
	  font-size: 14px;
	  padding: 12px 20px;
	  bottom: 20px;
	  right: 20px;
	}
	
}