html {
    font-size: 62.5%;
}
body {
    margin: 0;
    padding:0;
    font-size: 1.3rem;
    font-family: arial, sans-serif;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    min-height: 500px;
}
a {
    text-decoration: none;
}
header {
    width: 100%;
    height: 10vh;
}
header nav {
    display: flex;
    justify-content: flex-end;
}
header nav .nav-right-section {
    width: 25rem;
    height: auto;
    display: flex;
    list-style: none;
    justify-content: flex-end;
    align-items: center;
    
}
nav .nav-right-section a {
    margin-right: 1rem;
    color: #000000;

}
nav .nav-right-section .menu-icon {
    background-image: url('https://static.thenounproject.com/png/756729-200.png');
}

nav .nav-right-section .menu-img {
    background-image: url('https://lh3.googleusercontent.com/ogw/ADea4I7P6meRWiFKs_acm1O1J1b4SLCICddbpL2Duf3dX_o=s32-c-mo');
    border-radius: 50%;
    margin-right: 1rem;
    margin-left: 1rem;
}

nav .nav-right-section .menu-icon,
nav .nav-right-section .menu-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; /*para que quede del tamañao */
    width: 2.3rem;
    height: 2.3rem;
}

/* main */
main {
    text-align: center;
    height: 70vh;    
}

main .main-logo {
    background-image: url('https://www.google.com/logos/doodles/2021/get-vaccinated-wear-a-mask-save-lives-november-5-7-6753651837109336-2xa.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 30rem;
    height: 10rem;
    margin: 0 auto;
}
main .main-input-container {
    width: 30rem;
    border-radius: 10rem;
    border: 0.1rem solid #dfe1e5;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    
}
main .main-input {
    width: 30rem;
    margin: 0 auto;
    margin-bottom: 2rem;
    
}

main .main-input input {
    width: 22rem;
    height: 3rem;
    border:none;
    outline: none;
    font-size: 1.3rem;
}

main .main-input .search-icon,
main .main-input .micro-icon {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 1.3rem;
    height: 1.3rem;
}
main .main-input .search-icon {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Vector_search_icon.svg/945px-Vector_search_icon.svg.png');
}
main .main-input .micro-icon {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Google_mic.svg/716px-Google_mic.svg.png');
}

main .main-buttons {
    width: 20rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;    
}
main .main-buttons div{
    margin:1rem;
}


main .main-buttons button{
    height: 2.5rem;
    background-color: #f2f2f2;
    border:0;
    font-size: 1.5rem;
    color:#5f6368;
    border-radius: 0.5rem;
    padding: 0 1.5rem;
    
}


/* FOOTER */
footer {
    width: 100%;
    height: 20vh;
    font-size: 1.3rem;
    background-color: #f2f2f2;
    border-top: 1px solid #e4e4e4;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
footer ul {
    margin: 1rem;
    list-style: none;
    display: flex;
    padding-left: 0;
    text-align: center;
}

footer ul li a {
    margin: 1rem;
    color: #5f6368;
}