*{
    margin: 0;
    padding: 0;
}
body{
    overflow-y: scroll;
    overflow-x: hidden;
}
.header-top{
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    width: 100%;
    padding: 8px;
    background-color: blue;
}
.moto{
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-right: 35%;
}
h1{
    font-size: 12px;
    border-radius: 10px;
    background-color: white;
    color:blue;
    padding: 5px;
    font-family: sans-serif;
}
span{
    font-size: 15px;
    color: white;
    font-family: sans-serif;
    display: flex;
    align-items: center;
}
.btn{
    display: flex;
    flex-direction: row;
    padding-right: 15px;
    gap: 20px;
}
.search input{
    border-radius: 10px;
    outline: none;
    border: none;
    height: 70%;
    padding: 5px;
    background-color: orangered;
}
select{
    border-radius: 5px;
}
i{
    color: white;
    margin: 2px 0;
}
.header-notice{
    background-color: antiquewhite;
    color: blue;
    padding: 5px;
    font-size: 12px;
    padding-left: 60px;
}
.header-logo{
    display: flex;
    align-items: center;
    justify-content:space-around;
    flex-direction: row;
    gap: 100px;
    padding: 8px;
}
.header-logo img{
    height: 80px;
}
.flag{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    font-size: 12px;
    gap: 12px;
}
.first{
    font-size: 16px;
}
.nav{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: blue;
    height: 50px;
}
.list {
    display: flex;
    list-style-type: none;
}
.list li a{
    color: white;
    font-size: 18px;
    font-family: sans-serif;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    padding-right: 100px;
}
