34 lines
384 B
CSS
34 lines
384 B
CSS
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
width: 65%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#ads {
|
|
columns: 3;
|
|
}
|
|
|
|
h1 {
|
|
font-family: "Fraunces";
|
|
font-weight: 400;
|
|
text-align: center;
|
|
font-size: 4rem;
|
|
margin: 3rem auto 1rem;
|
|
}
|
|
|
|
h2 {
|
|
font-family: "Bebas Neue";
|
|
background-color: lightgray;
|
|
}
|
|
|
|
h3 {
|
|
font-family: "Fraunces";
|
|
font-weight: 400;
|
|
text-transform: capitalize;
|
|
}
|