30713-dev/style.css
Flatlogic Bot 5dcf18f803 red border
2025-08-22 12:27:23 +00:00

40 lines
744 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
body {
background-color: #f8f9fa;
font-family: 'Poppins', sans-serif;
color: #000000;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
.container {
background-color: #ffffff;
border-radius: 8px;
padding: 40px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
text-align: center;
}
.weather-widget {
margin-bottom: 20px;
border: 1px solid red;
}
.flatlogic-info {
margin-top: 30px;
}
.flatlogic-info h2 {
color: #007bff;
font-weight: 600;
margin-bottom: 15px;
}
.flatlogic-info p {
font-size: 1.1rem;
color: #343a40;
}