html, body{
    height:100%;
    margin: 0;
    padding: 0;
  }

.contenedor {
    margin: 0 auto;
    overflow: hidden;
	width: 96%;
    background-color: rgb(198, 203, 226);
    min-height: 100%;
   /* height: 98vh;*/
}

.head {
    top: 0;
    width: 96%;
    height: 15vh;
    position: fixed;
    display: block;
    z-index: 1;
}

.cuerpo {
    width: 89%;
    margin-top: 15vh;
    overflow-y: auto;
}

.direccion {
    height: 2rem;
    background-color: rgb(243, 247, 250);
    display: flex;
    align-items: center;
    font-size: 14px;
}
.direccion span a {
    margin-right: 10px;
    padding-left: 7px;
    text-decoration: none;
}



.menu {
    width: 25%;
    background-color: rgb(166, 163, 184);
    min-height: 93.5vh;
    /*height: 100%;*/
    display: inline-block;
    position: relative;
}
.menu ul {
    list-style-type:none;
    padding: 0px;
}
.menu ul button {
    background-color: rgb(99, 99, 117);
    color: azure;
    margin: 1px;
    padding: 5px;
    width: 100%;
    height: 4.2rem;
    align-items: start;
}
.menu ul button:hover {
    background-color: rgb(62, 68, 80);
}

.contenido {
    background-color: rgb(220, 223, 235);
    display: inline-block;
    width: 74.5%;
    min-height: 93.5vh;
    margin-left: 3px;
    position: absolute;
    padding: 10px;
    background-image: url("../imagenes/image.jpg");
    background-repeat: no-repeat;
    background-size: contain;
}

.nombreform {
    background-color: rgb(9, 6, 121);
    color: antiquewhite;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 1rem;
    height: 2rem;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulos {
    background-color: rgb(49, 44, 44);
    font-weight: bold;
    color: bisque;
    padding-left: 5px;
}

.botones {
    display: flex;
    justify-content:center;
}
.botones button {
    width: 10rem;
}


.logo {
    height: 2rem;
    background-color: rgb(243, 247, 250);
    color: blue;
    font-weight: bold;
    padding-left: 5px;
}
.logo span {
    margin-left: 8px;
    font-size: 18px;
}

.titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    font-weight: bold;
    font-size: 18px;
    color: rgb(248, 250, 247);
    background-color: rgb(117, 123, 146);
}
@media only screen and (max-width: 600px) {
    .menu {
        /*display: none;*/
        width: 5px;
    }
    .menu:hover {
        width: 10rem;
    }
    .contenido {
        width: 93%;
    }
    .menu ul button {
        font-size: 12px;
    }
    .direccion span {
        font-size: 12px;
    }
        
}