@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --font-family: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  width: 100%;
  height: 7.5rem;
  background: #003d7c;
  background: linear-gradient(180deg, #003d7c 6%, rgb(41, 80, 189) 81%);

  padding: 0 4.375rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  width: 5rem;
}

header .logo img {
  width: 100%;
}

header .header_descript {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

header .header_descript .p_uno {
  font-size: 1.875rem;
  font-family: var(--font-family);
  font-weight: bold;
  color: #fff;
}

header .header_descript .p_dos {
  font-family: var(--font-family);
  font-size: 1.125rem;
  color: #fff;
}

/*-------------------------------Main-----------------------------*/

main {
  width: 100%;
  min-height: calc(100vh - 7.5rem - 2.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/inventario2_0/img/bg2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

main .content {
  width: 55%;
  border-radius: 0.9375rem;
  background-color: #fff;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  padding: 1.5625rem;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

main .content .img {
  width: 18.75rem;
}

main .content .img img {
  width: 100%;
}

main .content .content_descript {
  padding: 1.25rem;
}

main .content .content_descript .descript_info {
  padding: 1.25rem 1.25rem 1.25rem 0;
}

main .content .content_descript .descript_info .descript_p_uno {
  margin-bottom: 0.625rem;
}

main .content .content_descript .descript_info .descript_p_uno .titleOne {
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: bold;
}

main .content .content_descript .descript_info .descript_p_uno .descriptOne {
  font-family: var(--font-family);
  font-size: 0.875rem;
  margin-left: 0.9375rem;
}

main .content .content_descript .options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9375rem;
}

main .content .content_descript .options button {
  font-family: var(--font-family);
  font-size: 0.875rem;
  border: none;
  border-radius: 0.3125rem;
  padding: 0.3125rem 1.25rem;
  color: #fff;
  transition: all 0.2s;
  font-weight: bold;
}

main .content .content_descript .options a {
  font-family: var(--font-family);
  text-decoration: none;
  font-size: 0.875rem;
  border: none;
  border-radius: 0.3125rem;
  padding: 0.3125rem 1.25rem;
  color: #fff;
  transition: all 0.2s;
  font-weight: bold;
}

main .content .content_descript .options .btnUno {
  color: rgba(89, 0, 255, 0.829);
  background-color: #fff;
  border: 1px solid rgba(89, 0, 255, 0.829);
  border-style: dashed;
  margin-right: 3.125rem;
}

main .content .content_descript .options .btnDos {
  background: rgba(255, 0, 0, 0.829);
}

main .content .content_descript .options .btnTres {
  background: rgba(0, 102, 255, 0.829);
}

main .content .content_descript .options .btnCuatro {
  background: rgba(29, 143, 0, 0.829);
}

/*-------Hover-----*/

main .content .content_descript .options .btnUno:hover {
  transform: scale(1.1);
  color: #fff;
  background: rgba(89, 0, 255, 0.904);
}

main .content .content_descript .options .btnDos:hover {
  transform: scale(1.1);
  background: rgba(204, 0, 0, 0.904);
}

main .content .content_descript .options .btnTres:hover {
  transform: scale(1.1);
  background: rgba(0, 102, 255, 0.904);
}

main .content .content_descript .options .btnCuatro:hover {
  transform: scale(1.1);
  background: rgba(29, 143, 0, 0.904);
}

/*-------------------------------Footer-----------------------------*/

footer {
  width: 100%;
  height: 2.5rem;
  text-align: center;
  background: rgb(74, 117, 231);
  background: linear-gradient(180deg, rgb(41, 80, 189) 6%, #003d7c 81%);
  display: flex;
  justify-content: center;
  align-items: center;
}

footer p {
  font-family: var(--font-family);
  font-size: 0.8125rem;
  color: #fff;
}

footer p span {
  color: rgb(0, 195, 255);
}

/*-------------------------------Medias Query-----------------------------*/

@media screen and (max-width: 1190px) {
    main .content {
        width: 80%;
    }
}

@media screen and (max-width: 1000px) {
    main .content {
        width: 90%;
    }
}

@media screen and (max-width: 860px) {
    main .content {
        width: 95%;
    }

    main .content .content_descript .options {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 680px) {
    header {
        padding: 3.125rem;
    }

    main .content {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 1.875rem;
    }

    header .logo {
        width: 3.75rem;
    }

    header .header_descript .p_uno {
        font-size: 1.5625rem;
    }

    header .header_descript .p_dos {
        font-size: .9375rem;
    }

    main .content .content_descript {
        padding: .625rem;
    }

    main .content .content_descript .descript_info {
        padding: 1.25rem 0 1.25rem 0;
    }
}

@media screen and (max-width: 360px) {
    main .content .img {
        width: 12.5rem;
    }

    main .content .content_descript {
        padding: .3125rem;
    }

    main .content .content_descript .descript_info {
        padding: 1.875rem 0 1.25rem 0;
    }
}

@media screen and (max-width: 280px) {
    header .logo {
        width: 3.125rem;
    }

    header .header_descript .p_uno {
        font-size: 1.125rem;
    }

    header .header_descript .p_dos {
        font-size: .625rem; 
    }

    footer p {
        font-size: .625rem;
    }
}