*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body
{
    background-color: #222;
}

.container_main
{
    width: 100%;
    height: 100vh;
    margin: auto;
}


.container_header
{
    width: 100%;
    height: auto;
    margin: auto;
}

.container_nav
{
    width: 100%;
    height: 60px;
    margin: auto;
    padding: 15px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.container_items_nav
{
    width: fit-content;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.title
{
    color: #fff;
    font-size: 100px;
    font-weight: 600;
}

.text_info
{
    color: #fff;
}

.image_user
{
    width: 35px;
    height: 35px;
    background-image: url('img/juan_pereyra.jpeg');
    background-position: center;
    background-size: cover;
    border-radius: 100%;
}

.item_list
{
    color: #fff;
}

.container_content
{
    width: 100%;
    height: calc(100% - 160px);
    margin: auto;
    text-align: center;
}

.container_content_main
{
    width: 90%;
    height: auto;
    margin: auto;
    display: grid;
    gap: 30px;
}

.container_form
{
    width: auto;
    height: auto;
    margin: auto;
    position: relative;
}

.container_buttons_main
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}   

.button_global
{
    padding: 10px 20px;
    color: #fff;
    background-color: rgb(61, 61, 61);
    border: none;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
}

.button_global:hover
{
    border: 1px solid rgb(87, 87, 87);
}

.input_search
{
    width: 700px;
    padding: 16px 20px;
    border-radius: 25px;
    border: none;
    background-color: #555;
    position: relative;
    outline: none;
}

.icon_search
{
    position: absolute;
    z-index: 10;
    top: 18px;
    left: 15px;
}

.icon_microphone
{
    position: absolute;
    z-index: 10;
    top: 13px;
    right: 170px;
}

.icon_camera
{
    position: absolute;
    z-index: 10;
    top: 13px;
    right: 135px;
}

.button_ia
{
    position: absolute;
    padding: 6px 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #fff;
    border-radius: 25px;
    top: 6px;
    right: 6px;
}

.container_footer
{
    width: auto;
    height: 100px;
    margin: auto;
    display: grid;
    background-color: #181818;
}

.container_country_footer
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 10px 30px;
    border-bottom: 1px solid rgb(46, 46, 46);
}

.container_list_footer
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list_footer
{
    display: flex;
    list-style: none;
    gap: 20px;
}