HTML
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Botones Mejorados</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<button class="btn instagram">Instagram</button>
<button class="btn github">GitHub</button>
</div>
</body>
</html>
CSS
/* Aplicando la fuente Montserrat */
body {
font-family: 'Montserrat', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
}
/* Contenedor con flexbox para alinear los botones horizontalmente */
.container {
display: flex;
gap: 20px; /* Espaciado entre los botones */
}
/* Estilos comunes para los botones */
.btn {
font-size: 18px;
font-weight: 600;
padding: 12px 24px;
border: none;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
}
/* Estilos específicos para el botón de Instagram */
.instagram {
background-color: #E4405F;
color: white;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.instagram:hover {
background-color: #D8345F;
box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}
/* Estilos específicos para el botón de GitHub */
.github {
background-color: #333;
color: white;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.github:hover {
background-color: #222;
box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}