2020-10-14 18:31:47 +00:00
|
|
|
/* Our CSS values that we'll use in the rest of our styling */
|
|
|
|
|
:root {
|
|
|
|
|
--main-bg-color: #69F7BE;
|
|
|
|
|
--main-text-color: #373fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-03-19 20:01:30 +00:00
|
|
|
|
|
|
|
|
body {
|
2019-10-23 17:47:19 +00:00
|
|
|
font-family: helvetica, arial, sans-serif;
|
2020-10-14 18:31:47 +00:00
|
|
|
background-color: var(--main-bg-color);
|
2018-03-19 20:01:30 +00:00
|
|
|
}
|
|
|
|
|
|
2017-10-10 12:57:38 +00:00
|
|
|
h1 {
|
2020-10-14 18:31:47 +00:00
|
|
|
color: var(--main-text-color);
|
2020-10-13 19:59:09 +00:00
|
|
|
font-size: 164pt;
|
2018-03-14 21:57:55 +00:00
|
|
|
}
|
2020-10-14 18:31:47 +00:00
|
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
|
min-height: 100vh; // height of the browser viewport
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
height: 100px;
|
|
|
|
|
width: 200px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 50px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
position: relative;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.illustration {
|
|
|
|
|
|
|
|
|
|
}
|