*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
	position: absolute;
    font-family: 'Roboto Flex', sans-serif;
    height: 593px;
	width: 100%;	
}

img{
	position: absolute;
}

.top{
    position: absolute;
    top: 0;
    background-color: #014c92;
    color: white;
    width: 100%;
    text-align: center;
}

.top p{
    padding: 10px 0;
}

header{
    text-align: center;
    margin-top: 50px;
}

header h1{
    font-weight: 400;
}

header h2{
    font-weight: 100;
    font-size: 20px;
    margin-bottom: 30px;
}

.enlaces1 a{
    text-decoration: none;
    background-color: #014c92;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all .5s;
}

.enlaces1 a:hover{
    background-color: rgb(113, 191, 255);
}

/* CONTENIDO DE LA PAGINA */

.contenido{
    text-align: center;
    background-image: url(/img/odontos.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 500px;
    margin-top: -20px;
    width: 100%;
    height: 82%;
}

.enlacesweb{
	display: grid;
	place-content: center;
    position: relative;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 25px 5px;
    border-radius: 10px;
	width: 20%;
}

.contenido h2{
    margin-top: 10px;
    color: #014c92;
}

.enlaces2 ul li{
    list-style: none;
    margin: 30px 10px;
    line-height: 10px;
}

.enlaces2 a{
    text-decoration: none;
    background-color: #014c92;
    font-size: 13px;
    padding: 10px;
    border-radius: 5px;
    color: white;
    transition: all .5s;
}

/*.enlaces2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	text-align: center;
}

.enlaces2 a:hover{
    background-color: rgb(113, 191, 255);
}

/* FOOTER */

/* Media queries para dispositivos móviles */
@media screen and (max-width: 768px) {
    body {
        height: auto;
    }

    .enlacesweb {
        width: 80%;
		height: 80%;
		margin-bottom: 50px;
    }
}

footer{
    background-color: #014c92;
    color: white;
    width: 100%;
    text-align: center;
    margin-top: 91px;
}

footer p{
    padding: 10px 0;
}