Spaces:
Sleeping
Sleeping
File size: 979 Bytes
b80778e | 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 | body {
margin: 0;
padding: 0;
background-image: url("background.jpg");
background-size: cover;
background-position: center;
font-family: Arial, sans-serif;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.title {
text-align: center;
font-size: 40px;
margin-bottom: 20px;
color: white;
}
.form {
background-color: rgba(255, 255, 255, 0.9);
padding: 20px;
border-radius: 10px;
}
.text-input {
display: block;
width: 400px;
height: 200px;
margin-bottom: 10px;
padding: 5px;
font-size: 16px;
}
.submit-button {
display: block;
width: 50%;
height: 40px;
background-color: #1e62d8;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
margin-left: auto;
margin-right: auto;
}
.result {
width: 410px;
background-color: rgba(255, 255, 255, 0.9);
padding: 20px;
border-radius: 10px;
}
|