71 lines
1.3 KiB
CSS
71 lines
1.3 KiB
CSS
body {
|
|
font-family: 'Arial', sans-serif;
|
|
background-color: #282828;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
header {
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
color: white;
|
|
text-align: center;
|
|
padding: 40px;
|
|
width: 100%;
|
|
max-width: 600px;
|
|
border-radius: 20px;
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
header h1 {
|
|
font-size: 48px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
header button {
|
|
padding: 10px 30px;
|
|
font-size: 18px;
|
|
border: none;
|
|
border-radius: 25px;
|
|
background-color: rgb(255, 0, 191);
|
|
color: white;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s, transform 0.2s;
|
|
margin: 10px;
|
|
}
|
|
|
|
header button:hover {
|
|
background-color: rgb(204, 0, 153);
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
header a {
|
|
color: #ecf0f1;
|
|
text-decoration: none;
|
|
font-size: 16px;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
header a:hover {
|
|
color: #3498db;
|
|
}
|
|
|
|
header input {
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
border: none;
|
|
border-radius: 20px;
|
|
outline: none;
|
|
margin-right: 5px;
|
|
width: 300px;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 20px;
|
|
font-size: 14px;
|
|
color: #bdc3c7;
|
|
}
|