html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
    background-color: #00aae4;
    margin: auto;
}


/*------------------------Home--------------------------------*/
a { /*parrafo*/
    font-size: 28px;
    color: white;
}



img { /*imagen*/
    width: 700px;
    border: 3px solid #00aae4;
    border-radius: 15%;
    box-shadow: 0px 15px 40px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0px 25px 60px rgba(0,0,0,0.7);
}

.display-4 { /*titulo*/
    font-weight: bold;
    margin: auto; 
    padding-bottom: 30px;
    color: white;
    font-family:cursive;
}

.containerms { /*footer*/
    font-weight: bold;
    color: white;
    text-align: center;
    font-size: 28px;
    font-family: cursive;
}

.boton-link { /*link de visitanos*/
    background-color: blue;
    color: white;
    padding: 3px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: cursive;
}


/*------------------------Usuario--------------------------------*/
.titulo{ /*titulo de usuario*/
    color: white;
    font-weight: bold;
    font-family: cursive;
}

.texto{ /*texto de usuario*/
    color: white;
    font-weight: bold;
    font-size: 28px;
    font-family: cursive;
}



.imag { /*imagen de usuario*/
    width: 700px;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 10%;
    box-shadow: 0px 15px 40px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    /* animación al pasar el mouse */
.imag:hover {
    transform: scale(1.05);
    box-shadow: 0px 25px 60px rgba(0,0,0,0.7);
 }



/*------------------------privacy--------------------------------*/
.texto_privacy { /*texto privacy*/
    color: white;
    font-weight: bold;
    font-size: 28px;
    text-align: justify;
    font-family: cursive;
}

.text-center {/*titulo privacy*/
    color: white;
    font-weight: bold;
    font-family: cursive;
}

.img_privacy {
    width: 800px;
    margin: auto;
    display: block;
}