
body{
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
}
/* para que al pasar el maouse aparezca un amnito */
a{
    text-decoration: none;
    cursor: pointer;
}

header{
/* para que coja toda la pantalla */
    width: 100%;
    height: 60px;

}

/* para que la ruta sea mas especifica */
header nav{
display: flex;
justify-content: flex-end;
}

header nav .nav-right-section{
    width: 250px;
    height: auto;
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
}

nav .nav-right-section a{
    margin-right: 10px;
    color: #000000;
}
nav .nav-right-section .menu-icon{
    background-image: url('https://cdn2.iconfinder.com/data/icons/mobile-web-app-vol-4-1/32/Dots_Menu_list_option_preference_nav_navigation-512.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 20px;
    height: 20px;
}

nav .nav-right-section img{

    border-radius: 50px;
    margin-left: 10px;
}


main{

    margin-top: 110px;
    /* para que todo lo que este dentro de la etiqueta main se centrte */
    text-align: center;


}


main .main-logo{
    width: 530px;
    /* centra y rellena para que ste en la mitad */
    margin: 0 auto;
    margin-bottom: 35px;
}

main .main-logo img{
    width: 300px;

}

main .main-input{
    width: 530px;
    margin: 0 auto;
    margin-bottom: 35px;
}

main .main-input-container{

width: 525px;
border-radius: 100px;
border:1px solid #e7e9ec;
display: flex;
justify-content: center;
align-items: center;

}

main .main-input input{
width: 450px;
height:  40px;
border:none;
outline: none;

}

/* esto es un fecto que cuando el cursor este arriba del alemento haga algo */
main .main-input-container:hover{
box-shadow: 0 1px 6px 0 #20212447;
border-color:#dfe1e500;
}

main .main-input .search-icon{

    background-image: url('https://cdn-icons-png.flaticon.com/512/2866/2866321.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
}

main .main-input-container .micro-icon{

    background-image: url('https://cdn1.iconfinder.com/data/icons/google-s-logo/150/Google_Icons-25-512.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 29px;
    height: 29px;
cursor: pointer;
}

main .main-buttons{

    width: 530px;
    margin: 0 auto;


}


main .main-buttons div {
    display: inline-block;

}

main .main-buttons button{
    height: 36px;
    background-color: #f2f2f2;
border: 0;
font-size: 14px;
color: #5f6368;
border-radius: 5px;
padding: 0 15px;
margin-right: 15px;

}

main .main-buttons button:hover{

    border: 1px solid #c6c6c6;
    box-shadow: 0 1px 1px #000001;
    color: #222;
}

footer {

    width: 100%;
    height: 50px;
/* con esto mi footer siempre va estar abajo */
    position: absolute;
    bottom: 0;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    font-size: 13px;
    background-color: #f2f2f2;
    border-top:1px solid #e4e4e4 
}

footer ul{
    margin: 10px;
    list-style: none;
    display: flex;
    padding-left: 0;

}


footer .footer-left{
    
    justify-self: left ;
}

footer .footer-right{
    justify-self: right;

}

footer ul li a{
margin: 10px;
color: #5f6368;
}






