@charset "UTF-8";

/*CSS CODE*/
html{
	box-sizing: border-box;
	background: #e6e9e9;
    background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
    -webkit-font-smoothing: antialiased;
}

html{
    background-image: url("Imagenes/forest.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

*,*::before,*::after{
	box-sizing: inherit;
}

body{
	background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    backdrop-filter: blur(10px);
    opacity: .8;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: white; 
    font-family: verdana;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
}

header{
    box-sizing: border-box;
    background-size: cover;
}

aside{
    display: block;
    position: sticky;
    float: right;
    align-content: center;
}

.imagenSeccion2{
    opacity: .4;
    max-width: 100%;
}

.imagenaside{ 
    opacity: .8;
    box-shadow: 2px;
    border-radius: 10px;
}
        
.seccion1{
    box-sizing: border-box;
    background-size: cover;       
}

/*NAV*/
nav{
    width: 100%;
    max-width: 100%;
    height: 53px;
    background: rgb(130, 123, 241);
    opacity: .8;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    display: block;
    position: sticky;
    top: 0px;
    z-index: 1;
}

nav ul{
    display: flex;
    margin: 0;
    padding: 0;
    float: left;
}

nav ul li{
    list-style: none;
    background: rgb(130, 123, 241);
}

nav ul li a{
    display: block;
    color: #fff;
    padding: 0 20px;
    text-decoration: none;
    font-weight: bold;
    line-height: 50px;
}

nav ul li a:hover,
nav ul li a.active{
    background: white;
    color: rgb(130, 123, 241);
    border-radius: 20px;
    border-collapse: collapse;
    transition: all 550ms ease;
}

/*LINKS*/
.links{
	display: flex;
    background-size: cover;
    background-color: rgb(130, 123, 241);
	padding: 20px;
    border-top: 0.5px;
    border-top-style: inset;
    border-top-color: rgba(255, 255, 255, .3); 
    justify-content: center;
	justify-items: center;
	align-items: center;
	align-content: center;
}

.table{
        text-decoration: none;
        font-size: 20px;
        color: #fff;
        margin: auto;
        border-collapse: separate;
    }
    
    .table ul{
        list-style: none;
        margin-left: 0px;
    }
    
    .table ul li a{
        text-decoration: none;
        color: #000;
        font-size: 15px;
    }
    
    .table ul li a:hover{
        color: whitesmoke;
        transition: all 550ms ease;
    }

     article{
            padding: 20px;
        }
        
        aside{
            padding: 20px;
        }

 /*FOOTER*/
 .footer{
	/*background-color: #9c497b;
	color: #fff;
    text-align: center;
    letter-spacing: 0.05em;
    border-top: 0.5px;
    border-top-style: inset;
    border-top-color: rgba(255, 255, 255, .3);
    font-size: 14px;
    padding: 20px;*/
    background-color: white;
    color: black;
    text-align: center;
    border-top: 1px;
    border-top-style: inset;
    border-top-color: #000;
    font-size: 16px;
    padding: 10px;
    opacity: .3;
}

 /*FLOAT BUTTONS*/
.gotopbtn{
    position: fixed;
    width: 40px;
    height: 40px;
    background: white;
    bottom: 40px;
    right: 50px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    color: white;
    font-size: 22px;
    opacity: .7;
    border-radius: 20px;
}

.gotopbtn img{
    box-sizing: border-box;
    width: 40px;
    height: 40px;
}

.gotopbtn:hover{
    background-color: rgb(130, 123, 241);
    transition: all 550ms ease;;
}

@media screen and (max-width: 1024px/*920px*/){
	.table{
           width:100%;
           border-right: hidden;
        }

        .table ul{
            margin-left: 0px;
            margin-right: 0px;
            margin-bottom: 0px;
            margin-top: 0px;
        }

        .table thead {
           display: none;
        }

        .table tr:nth-of-type(2n) {
           background-color: inherit;
        }

        .table tr td:first-child {
          
        }

        .table tbody td {
           display: block;
           text-align:center;
        }

        .table tbody td:before {
           content: attr(data-th);
           display: block;
           text-align:center;
        }
}