/*! 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;
align-items: center;
justify-content: space-around;
margin: 10%;
}
.presentacion__contenido {
width: 615px;
}
.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;
justify-content: space-between;
padding: 2% 0 ;
}
.presentacion__enlaces__link{
box-shadow: 0 0 5px hsla(0, 0%, 100%, 0.7);
width: 280px;
background-color: #22d4fd;
text-align: center;
padding: 21.5px 0;
border-radius: 16px;
font-family: "Jockey One", sans-serif;
font-weight: 600;
font-size: 1.5rem;
color: #000000;
text-decoration: none;
}