/*IMPORTACION DE GOOGLE FONTS*/
/*IMPORTACION DE GOOGLE FONTS*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Hind:wght@500&family=Roboto:ital,wght@0,500;1,400&display=swap');
/* SECCION UNIVERSAL*/
*{
    box-sizing: border-box;
}


.parrafoTitulo{
    color:#283b90;
}


/*SECCION HEADER*/
header{
    position:static;
    text-align: center;
    justify-content: space-between;
    height: 7%;
    padding-top: 10px;
    background-color: #ededed;
    width: 100%;
    
}
header img{
    display: none;
}

header nav a{
    margin-right: 5px;
    text-decoration: none; 
    color: black;
    font-family: 'Bebas Neue', sans-serif; 
}

header nav a:hover{
    color: #283b90;
}
/*SECCION CUERPO*/
body{
    font-family: 'Bebas Neue', sans-serif;
    margin: 0;
    background-color: #ededed;
}

/*SECCION SAMSUNG*/
#samsung{
    text-align: center;
    padding: 20px;
    height: 50%;
    background-color: #fff;
}
.video{
    width: 90%;
}
/*SECCION PRESENTACION*/
#presentacion{
    text-align: center;
    padding: 20px;
    height: 100%;
}
.img-1{
    width: 60%;
    margin-top: 1px; 
}
ul {
list-style-type: none;
text-align:center;
}
/*SECCION CARACTERISTICAS*/
#caracteristicas{
    text-align: center;
    padding: 20px;
    height: 100%;
    background-color: #fff;
}
.tabla{
    display: grid;
    place-content: center;
    text-align: start; 
}
.tabla div {
    margin: 15px;
    padding: 15px;
}
tbody{
    border-bottom: 1px solid #ededed;
    padding: 15px;
    margin: 5px;    
}
th ,td {
    text-align: start;
}
tr:hover{
    background-color: #ededed;
}
/*SECCION CONTACTO*/
#contacto{
    text-align: center;
    padding: 20px;
    height: 25%;
}
a img {
    border-radius: 55%;
    margin: 10px;
}
/*PIE DE PAGINA*/
footer{
    text-align: center;
    padding: 20px;
    background-color: #fff;
}
/*MEDIA QUERIS PARA VERSION RESPONSIVE TABLET*/
@media (min-width: 480px){
    .tabla{
        display: grid;
        grid-template-columns: 1fr 1fr;  
    }   
    .img-1{
        width: 40%;
        
    }
}
/*MEDIA QUERIS PARA VERSION RESPONSIVE*/
@media (min-width: 800px){
    /*SECCION HEADER*/
    header{
        position:sticky;
        display: flex;
        justify-content: space-between;
        align-items: center;
}
    header img {
        display: flex;
        align-items: center;
        width: 120px;
    }
    header nav a{
        margin-right: 15px;
    }
    /*SECCION TAMAÑO DE LETRAS*/
    h1{
        font-size: 2em;
    }
    h3{
        font-size: 1.7em;
    }
    p{
        font-size: 1.3em;
    }
    li{
        font-size: 1.2em;
    }
    .video{
        width: 80%;
    }
    .img-1{
        width: 30%;
        margin-top: 1px;
    }
    .tabla{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    tbody{
        border-bottom: none;
        border-right: 1px solid #ededed;
    }
    .table-1{
        border-left: 1px solid #ededed;
    }
}