Spaces:
Sleeping
Sleeping
File size: 1,552 Bytes
aa7cb02 |
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 |
body {
font-family: 'Roboto', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5f5f5;
margin: 0;
padding: 20px;
box-sizing: border-box;
}
.container {
text-align: center;
max-width: 800px;
width: 100%;
}
header {
margin-bottom: 20px;
}
header h1 {
font-size: 2em;
font-weight: 700;
margin-bottom: 10px;
}
header .description {
font-size: 1.1em;
font-weight: 400;
color: #555;
margin-bottom: 20px;
line-height: 1.6;
}
.links {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 20px;
}
.links a {
color: #333;
font-size: 1.5em;
transition: color 0.3s;
}
.links a:hover {
color: #ff4757;
}
.circle-button {
width: 100px;
height: 100px;
background-color: #ff4757;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
margin: 20px auto;
transition: background-color 0.3s ease;
}
.circle-button:hover {
background-color: #ff6b81;
}
.circle-button:active {
background-color: #34c759;
}
.circle-button i {
color: white;
font-size: 2em;
}
.text-output {
background-color: white;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 15px;
margin: 10px auto;
width: 80%;
max-width: 500px;
text-align: left;
font-size: 1em;
line-height: 1.5;
}
#status {
font-weight: bold;
margin-top: 10px;
}
|