61 lines
904 B
CSS
61 lines
904 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Helvetica Neue', Arial, sans-serif;
|
|
background: #f5f7fa;
|
|
color: #1a1a2e;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
main {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.logo {
|
|
height: 56px;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.tagline {
|
|
font-size: 0.85rem;
|
|
letter-spacing: 0.2em;
|
|
text-transform: uppercase;
|
|
color: #2e86c1;
|
|
margin-bottom: 4rem;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.contact {
|
|
border-top: 1px solid #dde3ea;
|
|
padding-top: 2rem;
|
|
}
|
|
|
|
.contact .name {
|
|
font-size: 1.1rem;
|
|
margin-bottom: 0.75rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.contact a {
|
|
color: #555;
|
|
text-decoration: none;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.contact a:hover {
|
|
color: #2e86c1;
|
|
}
|
|
|
|
.contact p {
|
|
margin-bottom: 0.4rem;
|
|
font-size: 0.95rem;
|
|
}
|