I am so confused been at this for a white. I am trying to do 2 things.
- Change the color of the links,
a:link
,a:visited
,a:hover
- Center all the items in the header (grid)
.container {
width: 100%;
margin: 0;
padding: 0;
top: 0;
left: 0;
}
.header {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: auto;
margin: 0;
padding: 0;
border-bottom: 3px solid #DAC896;
text-align: center;
background-color: #333;
}
.header > div {
color: white;
font-size: 4vw;
padding: 0;
align-items: center;
text-align: center;
}
.logo,
.navbar,
.buttons {
grid-row: 1;
}
.logo {
grid-column: 1 / 3;
}
.navbar {
grid-column: 2 / 3;
}
.buttons {
grid-column: 3 / 3;
}
.navbar {
background-color: #333;
border: none;
}
.navbar > li > a {
text-align: center;
}
.navbar-nav a:link {
color: white;
text-decoration: none;
}
.navbar-nav a:visited {
color: white;
text-decoration: none;
}
.navbar-nav a:hover {
color: white;
background-color: #111;
}
The link is: Corinth Shop