* {
  font-family: "Inter", sans-serif;
}

body,
main {
  padding: 0;
  margin: 0;
}

main {
  width: 100%;
  height: 100%;
  background-image: url(./images/a_bright_cinematic_scene_inside_a_modern_industrial_workshop_where_a_steel_component_is_being_manuf_162forg35rrka7zohl8v_2.jpg);
  aspect-ratio: 16 / 9;
  max-height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.principal {
  max-width: 1080px;

  margin: auto;
  display: flex;
  flex-flow: row nowrap;
  align-items: center; /* Eliminado el !important */
  justify-content: flex-start;
}

.logo {
  max-width: 100px;
  margin: 30px;
}

.col-1 {
  width: 50%;
}

h1 {
  margin-top: 0; /* Eliminado el !important */
}

h1,
h2,
h3,
p {
  color: azure;
  font-weight: 700;
  text-shadow: 3px 1px 3px rgba(0, 0, 0, 0.71);
}

a,
a:visited {
  color: cyan;
}

@media only screen and (min-width: 300px) and (max-width: 1084px) {
  main {
    height: 100vh;
    width: 100vw;
    background-image: url(./images/a_bright_cinematic_scene_inside_a_modern_industrial_workshop_where_a_steel_component_is_being_manuf_162forg35rrka7zohl8v_2Vertical.jpg);
    aspect-ratio: 9 / 16;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover; /* Cambiado a 'cover' */
  }

  .principal {
    max-width: 763px;
    padding: 10px;
    height: 75vh;
    max-height: 1920px;
    margin: auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end; /* Eliminado el !important */
    justify-content: center;
  }

  .col-1 {
    width: 100%;
    padding: 30px 15px;
    padding-bottom: 30px;
  }

  .logo {
    max-width: 80px;
    margin: 30px;
  }
}
