Can someone help me align the text and icons (login, shop) to be at the same level as the 'Logo,' but on the right side? I attempted to adjust the '.shop-icon' with {margin: -30px auto;}, but it ended up messing up the entire page layout, with the 'nav bar' and 'article' covering the header.
I'm still in the learning stages, but it seems like I've broken something from the start.
* {
margin: 0;
padding: 0;
}
html {
font-size: 62.5%;
}
body {
font-family: 'Roboto', sans-serif;
background: #2B2B2B;
font-size: 1.6rem;
}
.header-front {
max-width: 992px;
margin: 0 auto;
}
h1.logo {
color: #F6F6F6;
font-size: 4.8rem;
font-weight: 700;
text-align: left;
}
.shop-icon {
text-align: right;
}
.bag,
.account {
color: #F6F6F6;
text-decoration: none;
text-transform: uppercase;
margin: 10px;
}
.main-menu {
background-color: #F7FCFA;
width: 100%;
}
p {
color: #FFFFFF;
}