31 lines
445 B
CSS
31 lines
445 B
CSS
footer {
|
|
display: flex;
|
|
margin-top: auto;
|
|
margin-bottom: 2rem;
|
|
padding-top: 5rem;
|
|
justify-content: space-between;
|
|
margin-inline: 12.5vw;
|
|
}
|
|
|
|
.title {
|
|
background: var(--gradient);
|
|
background-clip: text;
|
|
color: transparent;
|
|
user-select: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.socials {
|
|
display: flex;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.socials a {
|
|
height: 25px;
|
|
display: flex;
|
|
}
|