html, body {
    min-height: 100%;
    width: 100%;
    box-sizing: border-box;
    background-color: rgb(142, 216, 255);
}

*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

.skeep {
    max-width: 120px;
    max-height: auto;
    position: absolute;
    top: 8px;
    left: 16px
}

.menu {
    height: auto;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
    padding-left: 30px;
    padding-right: 30px;
}

a {
    text-decoration: none;
}

nav {
    text-align: right;
    width: 100%;
    padding-top: 30px;
}


nav ul {
    float: right;
    margin-right: 20px;
    list-style: none;
}

nav ul li {
    margin-right: 20px;
    font-size: 25px;
    font-family: 'Mansalva', cursive;
}

nav ul li a {
    color: rgb(0, 0, 0);
}

li a:active, li a:hover {
    color: rgb(255, 245, 141);
}

img {
    width: 100%;
}


/* CSS para Seccion Home */
.home {
    height: 90vh;
    background-color: rgb(142, 216, 255);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.contenido-home {
    height: 120vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.casita {
    margin-top: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.ligamundo {
    color: rgb(255, 245, 141);
    font-family: 'Mansalva', cursive;
    text-align: center;
    padding-top: 400px;
    position: absolute;
}


/* CSS para Responsive Pages*/


/* Diseno para celulares */
@media screen and (min-width: 480px) {
    body {
        font-size: 80%;
    }

    nav ul li {
        display: flex;
        font-size: 15px;    
    }

    .ligamundo {
        font-size: 100px;
    }

    .casita {
        width: 400px;
    }
}

/* Diseno para tabletas */
@media screen and (min-width: 800px) {
    body {
        font-size: 90%;
    }

    nav ul li {
        display: inline-block;
        font-size: 20px;    
    }

    .ligamundo {
        font-size: 120px;
    }

    .casita {
        width: 800px;
    }
}

/* Diseno para PC */
@media screen and (min-width: 1025px) {
    body {
        font-size: 100%;
    }

    nav ul li {
        display: inline-block;
        font-size: 25px;
    }

    .ligamundo {
        font-size: 150px;
    }

    .casita {
        width: 1200px;
    }
}