/* =================
Typography
================= */
/*
Challenge: Set the initial styles for text
- Set the h1 to a relative font-size value equal to 40px
- Apply a text shadow to the h1 using the color value #816fca
*/
h1 {
font-weight: 400;
}
.beta-text {
font-weight: 900;
}
.subheading {
color: #575757;
font-weight: 900;
}
/* =================
Flex containers
================= */
.intro,
.main-content {
display: flex;
flex-direction: column;
}
/* =================
Intro
================= */
.intro {
justify-content: center;
min-height: 250px;
text-align: center;
color: #fff;
background-color: #9480e4;
}
/* ====================
Main content
==================== */
.main-content {
align-items: center;
padding-top: 2.5em;
padding-left: 2em;
padding-right: 2em;
}
.img-main {
width: 120px;
border-radius: 50%;
}
/* =================
Form
================= */
/* =================
Media queries
================= */
body {
font-family: 'Source Sans Pro', sans-serif;
color: #404040;
margin: 0;
}