* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Space Mono';
}
html, body {
    width: 100%;
    height: 100%;
}
/* Header */
@font-face {
    font-family: 'font';
    src: url(/messi-ec/assets/AdiCupQ2022.woff);
}
.argentina-text{
    font-family: 'font';
    font-size: 35px;
    color: #3099da;  
}
/* header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #fff;

} */

.logo{
    display: flex;
    align-items: center;
}
.logo a{
    margin-left: 15px;
    cursor: pointer;
}
.logo img{
    width:  65px;
    height: 65px;
    cursor: pointer;
}
nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 5px;
    
}

nav ul {
    display: flex;  
    margin-left: 100px;
    gap: 30px;
    font-size: 17px;
}
nav ul li:hover{
    font-weight: 700;
}
li{
    list-style: none;
    cursor: pointer;
}
a{
    color: #424242;
    text-decoration: none;
}
.contact{
    font-weight: 800;
}

.container{
    display: flex;
    align-items: center;
    padding: 8px;
    border: 1px solid rgb(133, 133, 133);
    border-radius: 5px;
}

.search-bar{
    outline: none;
    border: none;
    background: transparent;
    margin-left: 14px;
}
.search-icon{
    font-size: large;
    cursor: pointer;
}

.icon-login{
    display: flex;
    align-items: center;
    gap: 30px;
}
#icon{
    font-size: x-large;
}

.login-btn{
    font-size: 18px;
    border: none;
    border: 1.5px solid #3099da;
    padding: 5px 12px;
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
}
.login-btn:hover{
    color: white;
    background-color:#3099da;
}
/* Header css End */