Newer
Older
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
35
36
37
38
39
40
@font-face {
font-family: 'JalnanGothic';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_231029@1.1/JalnanGothic.woff') format('woff');
font-weight: normal;
font-style: normal;
}
.introduction {
font-size: 30px;
background-image: url("../introduction.png");
width: 50%;
height: 50%;
display: flex;
justify-content: center;
align-items: center;
padding: 50px;
flex-wrap: wrap;
}
.introduction p{
color: white;
font-family: "JalnanGothic";
}
Button {
width: 150px;
height: 50px;
font-size: 20px;
font-family:Arial, Helvetica, sans-serif;
transition:
transform .2s;
}
Button:hover{
opacity: 0.7;
transition: all 0.2s ease-out;
}