html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    color: white;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ------------------------------------------------------- */
body {
    background-color: #202124;
    color: white;
    font-family: 'arial', sans-serif;
    font-size: 13px;
    height: 100vh;

}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

a {
    text-decoration: none;
    cursor: pointer;
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2em 0;
    width: 65%;
}


/* --- NAV BAR --- */

.nav-ul {
    display: flex;
    justify-content: end;
    align-items: center;

}

.nav-li .material-symbols-outlined {
    padding: 5px;
    font-size: 23px;
    color: rgba(255, 255, 255, .87);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-li {
    display: flex;
    justify-content: space-evenly;
    margin: 5px;
    padding-right: 3px;
    padding-top: 2px;
}

.nav-li:nth-of-type(2) {
    padding-right: 12px;
}

nav img {
    width: 35px;
    height: 35px;
    border: 5px solid #202124;
}


/* --- MAIN ---*/
main {
    margin-top: 1em;
}

svg {
    max-width: 30px;
    max-height: 25px;
    margin: 0 3px 0 5px;
}

.logo-img {
    width: 270px;
    height: 90px;
}

.input-field {
    border: 0.5px solid #5f6368;
    display: flex;
    border-radius: 3rem;
    height: 2.7rem;
    padding: 0 15px;
    align-items: center;
    justify-content: space-around;
    width: 550px;
    min-width: 240px;
}

.input-filed .material-symbols-outlined {
    color: #9aa0a6;
    flex-basis: 10px;
}

input[type="text"] {
    border: none;
    background-color: transparent;
    display: flex;
    /* margin: 0 8px; */
    flex-grow: 1;
    color: white;
    font-size: 16px;
}


input:focus {
    outline: none;
}

.btn-field {
    margin: 2rem 0;
    display: flex;
    flex-direction: row;
}

/* .btn-field button:nth-of-type(1) {
    padding: 10px 20px;
} */

button {
    padding: 11px 16px;
    margin-right: 10px;
    border: 1px solid #202124;
    border-radius: 5px;
    color: white;
    background-color: #303134;
    /* min-width: 136.75px; */
}

.langs {
    display: flex;
    color: #bdc1c6;
    min-width: 229.7px;
}

.langs a {
    color: #8ab4f8;
    margin-left: 10px;
    font-size: 11px;
    font-style: italic;
}

.material-symbols-outlined {
    font-size: 20px;
    color: #9aa0a6;

}


/* --- FOOTER --- */
footer {
    background-color: #171717;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.ft-1 {
    padding: 16px 30px;
    border-bottom: 1px solid #3c4043;
    font-size: 15px;
}

footer * {
    color: #999da2;
}

.ft-2 {
    border-top: 1px solid #202124;
    font-size: 14px;
    padding: 1px 20px;
    display: flex;
    justify-content: space-between;
}

.left {
    display: flex;
    justify-content: space-between;
}

.left li {
    padding: 15px;
}

.right {
    display: flex;
    justify-content: space-between;
}

.right li {
    padding: 15px;
}



/* --- HOVER EFFECTS --- */

a:hover {
    text-decoration: underline;
}

.input-field:hover {
    border: 0.5px solid #303134;
    background-color: #303134;
    box-shadow: 2px 2px 2px #1b1b1b;
}

button:hover {
    border: 1px solid #5f6368;

}

nav img:hover {
    border: 5px solid #5f6368;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
}

.nav-li .material-symbols-outlined:hover {

    background-color: #5f6368;
    border-radius: 50%;
    cursor: pointer;
}

.material-symbols-outlined .mic:hover,
svg:hover {
    cursor: pointer;
}


/* --- MEDIA QUERIES ---*/

@media (max-width: 1200px) {

    .ft-2,
    .left,
    .right {
        justify-content: space-evenly;
    }
}

@media (max-width: 1024px) {
    .logo-img {
        width: 200px;
        height: 70px;
    }

    button,
    .langs {
        font-size: 11px;
    }

    .input-field {
        width: 450px;
    }

    form {
        padding: 1.4rem 0;
    }

}

@media (max-width: 690px) {


    .ft-2 {
        display: flex;
        flex-wrap: wrap;
    }

}

@media (max-width: 660px) {
    .logo-img {
        width: 170px;
        height: 55px;
    }

    button,
    .langs {
        font-size: 11px;
    }

    .input-field {
        width: 370px;
        height: 2.5rem;
    }

    form {
        padding: 1em 0;
    }

}

@media (max-width: 500px) {
    .logo-img {
        margin-top: 1rem;
    }

    .input-field {
        width: 270px;
        height: 2.5rem;
    }

    svg {
        min-height: 20px;
        min-width: 20px;
    }
}


@media (max-width: 450px) {

    .left {
        display: flex;
        flex-wrap: wrap;
    }

    .btn-field {
        margin: 1.5rem 0;
    }

    button {
        min-width: 120px;
    }
}
