@import url ("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  min-height: 100%;
  top: 0;
  margin: 0;
  padding: 0;
}

.grid-container > * {
  padding: 20px;
  text-align: center;
}

.header {
  grid-area: header;
  background-size: cover;
  background-image: url("assets/Mob.png");
}

.main {
  grid-area: main;
  padding: 50px;
}

.space {
  padding-top: 30px;
}
.footer {
  grid-area: footer;
  background-color: #f2f2f2;
}
.footer1 {
  margin-left: 25px;
  margin-top: 15px;
}
.footer-text {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
.footer-text1 {
  text-align: center;
  font-size: 16px;
}
.footer-text2 {
  display: inline-block;

  font-size: 14px;
  font-weight: 100;
}
.footer-text2 img {
  vertical-align: middle;
  width: 18%;
  height:auto;
}

.grid-container {
  display: grid;
  gap: 20px;

  grid-template:
    "header" 925px
    "main" auto
    "footer" 189px;
}

.boton {
  width: 200px;
  height: 60px;
  background-color: #544681;
  color: white;
}
.boton:hover {
  background-color: #d108c9;
  color: white;
}

.subrayado {
  text-decoration: underline #d108c9;
}
.sub-text {
  font-family: "open sans";
  font-size: 35px;
}
@media (min-width: 600px) {
  .header {
    background-image: url("assets/Desk.png");
    background-size: cover;
  }
  .grid-container {
    grid-template:
      "header  header" 30%
      "main    main" auto
      "footer  footer" auto;
  }
  .footer {
    background-color: #f2f2f2;
    /* background-size: cover; */
    width: 100%;
    height: 190px;
  }
  .footer-text2 {
    /* float:right; */
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 100;
  }
  .footer-text2 img {
    vertical-align: middle;
    width: 10%;
    height: auto;
  }
}

@media (min-width: 900px) {
  .header {
    background-image: url("assets/Desk.png");
  }
  .footer {
    background-size: cover;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: #f2f2f2;
  }
  .footer1 {
    margin-left: 125px;
    margin-top: 15px;
  }
  .footer-text {
    float: left;
    font-size: 16px;
    font-weight: bold;
  }
  .footer-text1 {
    float: left;
    font-size: 16px;
  }
  .footer-text2 {
    /* float:right; */

    margin-left: 800px;
    font-size: 18px;
    font-weight: 100;
  }
  .footer-text2 img {
    vertical-align: middle;
    width: 10%;
    height: auto;
  }

  .grid-container {
    grid-template:
      "header header header" 1079px
      "main   main   main" auto
      "footer footer footer" auto;
  }
}
