* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    font-family: "Segoe UI", Arial, sans-serif;
    color: white;
}

.logo-container {
position: fixed;
top: 20px;
left: 30px;
z-index: 1000;
}

.logo {
width: 100%;
max-width: 250px;
height: auto;
}

.container {
    text-align: center;
    padding: 50px;
}

h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    color: #cbd5e1;
}

.line {
    width: 120px;
    height: 4px;
    background: #38bdf8;
    margin: 25px auto;
    border-radius: 10px;
}

.excavadora {
    width: 250px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 25px rgba(56,189,248,.4));
}