<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portafolio de Juan David Causil Vega</title>
<!-- Enlace a Google Fonts para una tipografía más profesional -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Source+Code+Pro:wght@400;600&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif; /* Usamos Roboto como fuente principal */
}
body {
background: linear-gradient(135deg, #1D2B64, #F8CDDA);
color: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.container {
text-align: center;
padding: 20px;
max-width: 800px;
}
.content {
background-color: rgba(0, 0, 0, 0.6);
padding: 40px;
border-radius: 15px;
box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
margin-bottom: 20px;
}
h1 {
font-size: 2.5rem;
color: #FF4C00;
font-family: 'Source Code Pro', monospace; /* Fuente profesional tipo code */
margin-top: 20px;
}
p {
font-size: 1.2rem;
color: #ffffff;
margin-top: 10px;
line-height: 1.6;
}
img {
width: 200px;
height: 200px;
border-radius: 15px;
margin: 20px 10px;
box-shadow: 0 0 15px rgba(0, 255, 179, 0.4), 0 0 25px rgba(0, 255, 179, 0.6);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img:hover {
transform: scale(1.1);
box-shadow: 0 0 30px rgba(0, 255, 179, 0.6), 0 0 40px rgba(0, 255, 179, 0.8);
}
.btn-container {
margin-top: 20px;
}
a.button {
display: inline-block;
background-color: #FF4C00;
color: white;
padding: 12px 25px;
margin: 10px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
box-shadow: 0 5px 15px rgba(255, 76, 0, 0.5);
transition: all 0.3s ease;
}
a.button:hover {
background-color: #FF8C00;
box-shadow: 0 8px 20px rgba(255, 140, 0, 0.6);
}
.image-container {
display: flex;
justify-content: center;
gap: 20px;
margin: 20px 0;
}
</style>
</head>
<body>
<div class="container">
<!-- Imagen de perfil de Juan David Causil Vega -->
<img src="Img/Img4.jpg" alt="Juan David Causil Vega">
<div class="content">
<h1>Portafolio de Juan David Causil Vega</h1>
<p>Hola, soy Juan David Causil Vega, soy de Colombia apasionado por la tecnología y el desarrollo web. Me especializo en la creación de soluciones innovadoras y funcionales, combinando diseño moderno con eficiencia técnica. Siempre estoy dispuesto a enfrentar nuevos retos y aprender de ellos.</p>
</div>
<div class="image-container">
<img src="Img/Img6.jpeg" alt="Imagen de Juan David Causil Vega">
<img src="Img/Img5.png" alt="Segunda imagen representativa">
</div>
<div class="btn-container">
<a class="button" href="#">Instagram</a>
<a class="button" href="#">GitHub</a>
</div>
</div>
</body>
</html>