body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f8ff; /* AliceBlue */
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
color: #333;
}
.pi-symbol {
position: fixed;
top: 10px;
right: 15px;
font-size: 24px;
color: #ffb6c1; /* LightPink */
text-decoration: none;
transition: transform 0.3s ease;
}
.pi-symbol:hover {
transform: scale(1.2);
}
.container {
text-align: center;
background-color: #ffffff;
padding: 40px;
border-radius: 20px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
width: 80%;
max-width: 900px;
}
header h1 {
color: #dda0dd; /* Plum */
margin-bottom: 40px;
font-size: 2.5em;
}
.mini-apps {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 30px;
margin-bottom: 50px;
}
.app {
background-color: #f5f5f5; /* WhiteSmoke */
padding: 25px;
border-radius: 15px;
width: 200px;
text-decoration: none;
color: inherit;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid #eee;
}
.app:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
/* Estilo para los iconos de Font Awesome /
.app i {
font-size: 60px; / Tamaño del icono /
margin-bottom: 15px;
color: #b0e0e6; / PowderBlue */
}
.app h2 {
margin: 10px 0;
color: #add8e6; /* LightBlue */
}
.app p {
font-size: 0.9em;
color: #a9a9a9; /* DarkGray */
}
.remote-assistance {
margin-top: 30px;
}
.remote-button {
display: inline-flex;
align-items: center;
background-color: #ff6961; /* Pastel Red */
color: white;
padding: 20px 40px;
border: none;
border-radius: 12px;
font-size: 1.2em;
text-decoration: none;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.3s ease;
}
.remote-button:hover {
background-color: #ff4c4c;
transform: scale(1.05);
}
/* Estilo para el icono del botón /
.remote-button i {
font-size: 28px; / Tamaño del icono */
margin-right: 15px;
}