/*! 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-between;
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;
}