@import url('https://fonts.googleapis.com/css?family=Montserrat:500');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

li, a, button{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
}

header{
    height: 65px;
    display: flex;
    background-color: rgb(216, 134, 27);
}

.innerHeader{
    margin: 0 auto;
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    vertical-align: middle;
    background: none;
}

.logo{
    height: 100%;
    cursor: pointer;   
    align-items: center;
}

.logo__img{
    height: 80%;
    vertical-align: middle;
}


.nav__links{
    list-style: none;
}

.nav__links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav__links li a{
    transition: all 0.3s ease 0s;
}

.nav__links li a:hover{
    color: rgb(49, 104, 253);
}

h1{
    padding-top: 40px;
    transform: translateY(-50%);
    font-size: 50px;
}

@media screen and (max-width: 550px){
    .innerHeader{
        width: 100%;
    }

    .nav__links li {
        padding: 0px 10px;
    }
}