docker compose

This commit is contained in:
2026-08-05 07:21:46 -05:00
parent 4fe2f7394e
commit 2080f396dc
4 changed files with 58 additions and 24 deletions
+33
View File
@@ -0,0 +1,33 @@
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 400px;
}
h1 {
margin-bottom: 1rem;
color: #2c3e50;
}
p {
color: #666;
}