I want to style the Left Double Quote at the top center of my card, so it looks like a title(can be seen in pen here). I want it to appear bigger in size and want to learn how to style it separate from the font. Can somebody plz help?
HTML(Pug):
.main
.container
blockquote.quote Success is no accident. It is hardwork, perseverance, learning, studying, sacrifice, and most of all, love of what you are doing or learning to do.
footer Pele
SCSS:
.main {
height: 100vh;
width: 100vw;
background-color: mintcream;
display: flex;
justify-content: center;
align-items: center;
}
.container {
position: relative;
height: 270px;
width: 600px;
background-color: tomato;
-webkit-box-shadow: 0 -2px 25px 0 rgba(0, 0, 0, 0.15), 0 13px 25px 0 rgba(0, 0, 0, 0.3);
font-size: 24px;
}
blockquote::before{
content: "\201C"; /*Unicode for Left Double Quote*/
position: absolute;
margin: 0 auto;
}
.quote {
position: absolute;
top: 30px;
font-family: 'Bitter', serif;
color: white;
font-size: 24px;
}