html {
  font-size: 14px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.wrapper {
    display: flex;
    flex-flow: column;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-top: 10px;
}

footer{
    color: #2c2c2c;
    background-color: aquamarine;
}

.text-titulo {
    text-align: center;
    color: darkblue;
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 350;
    line-height: 1.2;
}

.Stock-name{
    color: darkblue;
}

.advertencia{
    color: red;
}

.centrado{
    text-align: center;
}

/* Pantalla de Télefono*/
@media all and (max-width: 480px) {
    .row {
        flex-direction: column;
    }

    .row > .aside,
    .row > .main {
        flex: 1 100%;
    }

    p {
        text-align: center;
        padding-top: 10px;
        padding-left: 10px;
    }
}

/* Pantalla de Tablet*/
@media screen and (min-width: 481px) and (max-width: 768px) {
    .row {
        flex-direction: row;
    }

    .row > .aside {
        flex: 2;
    }

    .row > .main {
        flex: 2;
    }

    p {
        text-align: justify;
        padding-top: 10px;
        padding-left: 10px;
    }
}

/* Pantalla de Computadora*/
@media screen and (min-width: 769px) {
    .row {
        display: flex;
        gap: 10px;
    }

    .row > .aside {
        flex: 2;
        padding: 10px;
        border-radius: 10px;
    }

    .row > .main {
        flex: 3;
        padding: 10px;
        border-radius: 10px;
    }

    p {
        text-align: justify;
    }

    html {
        font-size: 18px;
    }
}