35 lines
436 B
SCSS
35 lines
436 B
SCSS
.mainContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.title {
|
|
font-size: 2rem;
|
|
margin-bottom: 0;
|
|
margin-top: 0;
|
|
font-weight: 600;
|
|
color: #686868;
|
|
}
|
|
|
|
.desc {
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.info {
|
|
margin-top: 0.7rem;
|
|
}
|
|
|
|
.link {
|
|
color: #0274be;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
margin-top: 0.7rem;
|
|
}
|
|
|
|
.link:hover {
|
|
color: #3a3a3a;
|
|
}
|