80 lines
1.2 KiB
CSS
80 lines
1.2 KiB
CSS
/* Reset */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
color: #f4f4f4;
|
|
background-color: #0d0d0d;
|
|
overflow: hidden;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.background-animation {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: radial-gradient(#444 1px, transparent 1px);
|
|
background-size: 40px 40px;
|
|
animation: moveBG 20s linear infinite;
|
|
z-index: 0;
|
|
opacity: 0.05;
|
|
}
|
|
|
|
@keyframes moveBG {
|
|
from {
|
|
background-position: 0 0;
|
|
}
|
|
to {
|
|
background-position: 1000px 1000px;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
text-align: center;
|
|
z-index: 2;
|
|
padding: 2rem;
|
|
margin-top: 10vh;
|
|
}
|
|
|
|
.content h1 {
|
|
font-size: 3rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.content p {
|
|
font-size: 1.2rem;
|
|
margin: 0.5rem 0;
|
|
color: #ccc;
|
|
}
|
|
|
|
.contact-btn {
|
|
display: inline-block;
|
|
margin-top: 2rem;
|
|
padding: 0.75rem 1.5rem;
|
|
background: #00bcd4;
|
|
color: #000;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
border-radius: 4px;
|
|
transition: background 0.3s ease;
|
|
}
|
|
|
|
.contact-btn:hover {
|
|
background: #03a9f4;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
padding: 1rem;
|
|
font-size: 0.9rem;
|
|
color: #888;
|
|
z-index: 2;
|
|
}
|