I put a .address class selector and i have tried indenting .address or putting more space between it and the { but it keeps saying that i didn’t put .address selector what did i do wrong?
Cafe MenuCAMPER CAFE
Est. 2020
Coffee
French Vanilla
3.00
Caramel Macchiato
3.75
Pumpkin Spice
3.50
Hazelnut
4.00
Mocha
4.50
Desserts
Donut
1.50
Cherry Pie
2.75
Cheesecake
3.00
Cinnamon Roll
2.50
123 Free Code Camp Drive
/* file: styles.css */
body {
background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
font-family: sans-serif;
padding: 20px;
}
h1 {
font-size: 40px;
margin-top: 0;
margin-bottom: 15px;
}
h2 {
font-size: 30px;
}
.established {
font-style: italic;
}
h1, h2, p {
text-align: center;
}
.menu {
width: 80%;
background-color: burlywood;
margin-left: auto;
margin-right: auto;
padding: 20px;
max-width: 500px;
}
hr {
height: 2px;
background-color: brown;
border-color: brown;
}
.bottom-line {
margin-top: 25px;
}
h1, h2 {
font-family: Impact, serif;
}
.item p {
display: inline-block;
margin-top: 5px;
margin-bottom: 5px;
font-size: 18px;
}
.flavor, .dessert {
text-align: left;
width: 75%;
}
.price {
text-align: right;
width: 25%
}
/* FOOTER */
footer {
font-size: 14px;
/* User Editable Region */
.address{
margin-bottom: 5px;
}
/* User Editable Region */
a {
color: black;
}
a:visited {
color: black;
}
a:hover {
color: brown;
}
a:active {
color: brown;
}
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36
Challenge: Learn Basic CSS by Building a Cafe Menu - Step 86
Link to the challenge: