@charset "utf-8";
/* CSS Document */
body{
    margin:0;
    background: linear-gradient(to right, #D8C1B0, #E7D9CF);
}
.navbar{
	background: linear-gradient(to right, #B1897C, #C2A399);
    backdrop-filter: blur(5px);
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    padding:10px;
}

.navbar a{
    color:white;
    text-decoration:none;
    margin:5px;
    padding:10px 15px;
    border-radius:20px;
    transition:0.3s;
    font-weight:bold;
	font-family: Rockwell Condensed;
	font-size: 20px;
}

.navbar a:hover{
    background:#D8C1B0;
    transform: scale(1.1);
}

.contador{
    width: 200px;
    margin: 20px auto;
    text-align: center;
    background: #e3f2fd;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
}

footer{
    text-align:center;
    padding:0.1px;
    background: rgba(0,0,0,0.5);
    color:white;
    position:fixed;
    bottom:0;
    width:100%;
	font-family: MV Boli;
}

.titulo-secundario{
    text-align:center;
    padding:5px;
    background: linear-gradient(to right, #6F4E37, #BA9173);
    color:white;
}

.titulo-secundario h1{
    font-size:25px;
    margin:0;
    letter-spacing:2px;
    font-family: "Cooper Black";
    text-shadow:2px 2px 5px black;
}
.hero{
    height:70vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.titulo-principal{
font-size:90px;
color:white;
font-family:"Cooper Black";
text-shadow:
	0 0 10px #6F4E37,
	0 0 20px #6F4E37,
	0 0 40px #6F4E37;

animation:
	aparecer 2s ease,
	flotar 3s infinite ease-in-out;
}

@keyframes flotar{
0%{
	transform:translateY(0px);
}

50%{
	transform:translateY(-15px);
}

100%{
	transform:translateY(0px);
}
}
