button{
    color:green;
}

a{
    color: white;
}

body{
    background-color: #0f172a;
    color: #bdc1c6;
    /* padding: 14px; */
    min-height: 100vh;
    display:flex;
    flex-direction: column;
    font-family: sans-serif, 'Times New Roman', Times, serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:18px;
}

header section img{
    max-width: 40px;
    border-radius:50%;
    border: 2px solid cyan;
}

nav,
section{
    display: flex;
    align-items: center;
    gap: 14px
}

.whitelink{
    color: white;
}

.greylink{
    color: lightgrey;
}

a{
    text-decoration: unset;
    font-size: 1em;
    
}

a:hover{
    text-decoration: underline;
}

main{
    flex:1;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:24px;
    padding: 0 14px;
}

.headerText{
    color: white;
    font-size: 6em;
    font-family: 'Times New Roman', Times, serif;
}

.searchBar{
    display: flex;
    width:100%;
    gap:10px;
    max-width:700px;
    margin: 0 auto;
    border:1px solid grey;
    padding:14px;
    border-radius: 40px;
    /* font-size: 20px; */

}
input {
    background: transparent;
    outline:none;
    border:unset;
    color:white;
    flex:1
    
}

.searchBar:hover {
    border-color: transparent;
    background-color: #334155;
}

.iconButton {
    background: transparent;
    border:none;
    color:white;
    font-size: 1.2em;
    cursor:pointer;
}

.iconButtonContainer {
    display:flex;
    align-items: center;
    gap:14px;
}

.searchButtonsContainer{
    display:flex;
    align-items: center;
    gap:14px;
}
.searchButtonsContainer button{
    padding: 6px 10px;
    border-radius: 8px;
    background-color: #334155;
    border:1px solid transparent;
    color:white;
    cursor: pointer;
}

.searchButtonsContainer button:hover{
    border:1px solid darkgray;
}

.languageSelection{
    font-size: 0.9em;
}

.languageSelection span{
    color:cyan;
    
}

.languageSelection span:hover{
    cursor: pointer;
    text-decoration: underline;
    
    
}

footer{
    display:flex;
    flex-direction: column;
}

footer > section{
    gap:20px;
    padding:20px;
    
}


footer > section:last-child{
    display:flex;
    align-items: center;
    justify-content: space-around;
    border: 1px solid darkgray;
    flex-direction: column;
}

.footerLink{
    display:flex;
    align-items: center;
    gap:18px;
    
}

.footerLink a {
    cursor: pointer;
}



@media (min-width:540px){
    footer > section:last-child{
        flex-direction: row;
    }
}
