Create styles.css

This commit is contained in:
Acrocasio 2023-06-21 08:33:11 +02:00 committed by GitHub
parent f7d653529b
commit 34a32a236e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
styles.css Normal file
View File

@ -0,0 +1,28 @@
body {
font-family: Arial, sans-serif;
background-color: #302e2e;
margin: 0;
padding: 0;
transition: background-color 0.3s;
color: #333;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #222020;
border: 1px solid #221e1e;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s;
}
h1 {
text-align: center;
margin-bottom: 30px;
}
a {
color: #802c2c;
}