File size: 2,222 Bytes
66467a9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 450%; /* Increase the width for a larger main block */
    max-width: 1800px; /* Set a maximum width to maintain readability */
    padding: 60px;
    background-color: rgb(0, 0, 0);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-image: url("vector.png"); /* Replace with your image path */
    background-size: cover; /* Resize image to cover the container */
    background-repeat: no-repeat; /* Don't repeat the image */
    background-position: center; /* Center the image within the container */
}

h1 {
    color: white;
    font-size: 60px;
    margin-bottom: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

form {
    margin-top: 20px;
}

.front-frame {
    background-image: url("{{ url_for('static', filename='blue.jpg') }}");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px; /* Adjust padding as needed */
    border-radius: 10px; /* Add border-radius for rounded corners */
}

label {
    display: block;
    margin-bottom: 15px;
    color:white;
    font-size: 20px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

input,
select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.columns {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.column {
    flex-grow: 1;
}

.generate-btn {
    /*background-color:;*/
    color:black;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 15px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

.generate-btn:hover {
    background-color:lightblue;
}

.response {
    margin-top: 20px;
    background-color: rgb(214, 219, 214);
    padding: 20px;
    border-radius: 4px;
    color: rgb(12, 12, 12);
    font-size: 18px;
}