@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: Poppins;
    margin: 0;
}

nav{
    height: 135px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #ed0018;
    box-shadow: 1px 1px 15px 1px rgb(61, 61, 61);
}

.nav-links{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    gap: 20px;
}

.nav-links a{
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    border-radius: 16px;
    transition: font-size ease 0.25s;
    padding: 10px;
}

.nav-links a:hover{
    font-size: 22px;
}

.logo img{
    width: 200px;
    height: 80px;
}

.header-logo span{
    color: white;
    font-size: 35px;
    font-weight: 500;
    text-decoration: none;
}

.icons{
    display: flex;
    width: auto;
    height: 30px;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
}

.icons svg{
    height: 50px;
    width: 50px;
    background-color: transparent;
    color: white;
    padding: 10px;
    border-radius: 50%;
    transition: transform ease 0.25s;
}

.icons svg:hover{
    transform: scale(1.3);
}




