aboutsummaryrefslogtreecommitdiff
path: root/sass/_main.scss
blob: a8cc99fb2adc91a7a3055d8687135bbe4d51c1e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
.main {
	max-width: 1200*$px;
	margin: auto;
	padding: 20*$px;
}
.hero {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap-reverse;
	row-gap: 20*$px;
	column-gap: 40*$px;
	&__text {
		margin: auto;
		display: flex;
		flex-direction: column;
	}
	&__cta {
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
	}
	&__img {
		flex: 1;
		margin: auto;
		min-width: 320*$px;
		max-width: 600*$px;
		max-height: 50vmax;
	}
}
.profile-pic {
	max-width: 100%;
	max-height: 100%;
	border-radius: 5*$px;
}