77 font-style : normal;
88}
99
10+ .delius-regular {
11+ font-family : "Delius" , cursive;
12+ font-weight : 400 ;
13+ font-style : normal;
14+ }
15+
1016.special-elite-regular {
1117 font-family : "Special Elite" , system-ui;
1218 font-weight : 400 ;
@@ -24,33 +30,116 @@ body {
2430.section {
2531 background-attachment : fixed;
2632 background-image : linear-gradient (rgba (0 , 0 , 0 , 0.5 ), rgba (0 , 0 , 0 , 0.5 )), var (--bg-img );
33+ background-position : center;
2734 background-repeat : no-repeat;
2835 background-size : cover;
2936 padding : 3% ;
3037}
3138
39+ /* =============================================
40+ Layout for the slides
41+ =========================================== */
42+
43+ .slide img {
44+ width : 100% ;
45+ height : auto;
46+ display : block;
47+ }
48+
49+ /* =============================================
50+ Layout for text and images of each question
51+ =========================================== */
52+
53+ .container {
54+ display : flex;
55+ flex-direction : row;
56+ gap : 2% ;
57+ align-items : center; /* vertical alignment */
58+ justify-content : start; /* horizontal alignment */
59+ }
60+
61+ .text-container {
62+ flex : 1 ; /* Take up remaining space */
63+ }
64+
65+ .image-container {
66+ width : 60% ;
67+ }
68+
69+ .image-container img {
70+ width : 100% ;
71+ height : auto;
72+ display : block;
73+ }
74+
3275/* =============================================
3376 Headers and paragraphs
3477 =========================================== */
35- h1 , h2 , p {
78+
79+ h1 , h2 , h3 , p {
3680 color : white;
3781}
3882
39- h1 , h2 {
83+ h1 , h2 , h3 {
4084 font-family : "Carter One" , sans-serif;
4185 text-align : center;
4286}
4387
4488h1 {
4589 font-size : 60px ;
90+ padding-bottom : 24px ;
4691}
4792
4893h2 {
4994 font-size : 40px ;
95+ padding-bottom : 24px ;
96+ }
97+
98+ h3 {
99+ font-size : 30px ;
100+ text-align : left;
50101}
51102
52103p {
53- font-family : "Special Elite " , system-ui ;
104+ font-family : "Delius " , cursive ;
54105 font-size : 24px ;
55106 text-align : justify;
107+ }
108+
109+ /* =============================================
110+ Layout for the "About the Team" section
111+ =========================================== */
112+ .about-container {
113+ flex : 1 ;
114+ display : flex;
115+ flex-direction : column;
116+ gap : 2% ;
117+ align-items : center;
118+ }
119+
120+ .about-team-image {
121+ width : 25% ;
122+ }
123+
124+ .about-image img ,
125+ .about-team-image img {
126+ border-radius : 50% ;
127+ height : auto;
128+ display : block;
129+ }
130+
131+ .about-team-image img {
132+ width : 300px ;
133+ }
134+ .about-image img {
135+ background-color : white;
136+ width : 150px ;
137+ }
138+
139+ .about-person {
140+ display : flex;
141+ flex-direction : row;
142+ gap : 2% ;
143+ align-items : center;
144+ justify-content : start;
56145}
0 commit comments