File size: 617 Bytes
23d152f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
* {
    box-sizing: border-box;
    color : white;
}
body {
    padding : 100px;
    margin : 100px;
    background-color: #222;
    padding: 0px;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    display : flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height : 100dvh;
    gap : 1rem;
    overflow-y : scroll;

}

.img {
    border-radius: 50%;     
}


.container {
    width : 50%;
    padding : 2rem;
    border-radius: 0.8rem;
    background-color: #333;
}

main > form > fieldset {
    display : flex;
    flex-direction: column;
    gap : 1rem;
}