File size: 985 Bytes
4963d50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
48
49
50
51
52
53
54
55
56
57
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body{
    background-color: lavender;
    color: black;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 0;
    margin: 0;
  }

  .container{
    position:absolute;
    margin-top: 350px;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 25px;
    font-size: 25px;
}
   input{
    margin-top: 15px;
    outline: none;
    border: none;
    padding: 5px;
    width: 600px;
    height: 50px;
    font-size: 15px;
}
   button{
    margin-top: 40px;
    width:150px;
    color:white;
    background-color:black;
    font-size: 20px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 800;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
}

.col {
    -ms-flex: 50%;
    flex: 50%;
}
a{
    text-decoration: none;
    color: white;
}