* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    background-image: url('./src/gt.jpg'); /* Cambia 'camiones.jpg' por la ruta de tu imagen */
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
}

.content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    color: black;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

p {
    font-size: 1.2em;
     color: white;
}
.logo {
    width: 300px; /* Ajusta este valor según el tamaño deseado */
    height: auto; /* Mantiene la proporción de la imagen */
    margin-bottom: 20px; /* Espacio entre el logo y el texto */
}
