-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlandstyle.css
47 lines (46 loc) · 866 Bytes
/
landstyle.css
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
41
42
43
44
45
46
47
*{
border: 0;
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: 16px;
}
body{
background-color: turquoise;
}
.content{
background-color: white;
display: flex;
margin: auto;
margin-top: 5rem;
max-width: 1000px;
box-shadow: 3px 3px 20px 3px rgb(23, 37, 73);
flex-flow: column;
align-items: center;
padding: 1rem;
min-height: 400px;
}
h1{
font-size: 2rem;
font-family: 'Courier New', Courier, monospace;
font-weight: normal;
margin-bottom: 3rem;
}
.text{
margin-top: 2rem;
font-weight: bold;
font-style: italic;
margin-bottom: 3rem;
}
.backbutton{
background-color:orange;
width: 90%;
border: none;
color: white;
font-weight: bold;
font-size: 1rem;
margin: 0.5rem;
padding: 0.7rem;
margin-top: 5rem;
border-radius: 15px;
}