/*! Imports Fonts */
@import url("https://fonts.googleapis.com/css2?family=Jockey+One&display=swap");
* {
padding: 0;
margin: 0;
}
body {
background-color: #000000;
color: #f6f6f6;
height: 100vh;
box-sizing: border-box;
}
.titulo-destaque {
color: #22d4fd;
text-transform: uppercase;
text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.presentacion {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-around;
margin: 10% 15%;
}
.presentacion__contenido {
width: 615px;
display: flex;
flex-flow: column wrap;
gap: 40px;
}
.presentacion__contenido__titulo {
font-size: 2.25rem;
font-family: "Jockey One", sans-serif;
}
.presentacion__contenido__texto {
font-size: 1.5rem;
font-family: "Jockey One", sans-serif;
}
.presentacion__enlaces{
display: flex;
flex-flow: column wrap;
gap: 32px;
align-items: center;
padding: 2% 0 ;
}
.presentacion__enlaces__subtitulo{
font-family: "Jockey One", sans-serif;
font-family: 1.5rem;
font-weight: 400;
}
.presentacion__enlaces__link{
box-shadow: 0 0 5px hsla(0, 0%, 100%, 0.7);
width: 378px;
text-align: center;
padding: 21.5px 0;
border-radius: 8px;
font-family: "Jockey One", sans-serif;
font-weight: 600;
font-size: 1.5rem;
color: #f6f6f6;
text-decoration: none;
border: 2px solid #22d4fd;
&:hover{
border: 2px dotted #22d4fd;
}
}