Created basic structure of home page

This commit is contained in:
2026-01-31 11:57:26 -05:00
parent 9ea8c2a156
commit de69b1f1e9
22 changed files with 1169 additions and 21 deletions

View File

@@ -0,0 +1,46 @@
.footer-container {
height: 150px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 64px;
box-sizing: border-box;
background-color: var(--dark-gray);
border-top: 1px solid rgb(255, 255, 255, 0.2);
}
.logo-and-copyright {
display: flex;
align-items: center;
gap: var(--space-lg-24px);
}
.divider {
width: 1px;
height: 40px;
background-color: rgba(255, 255, 255, 0.2);
}
.logo-naliia-footer {
height: 50px;
width: auto;
}
.social-media {
display: flex;
flex-direction: column;
gap: var(--space-sm-8px);
}
.icons-social-media {
display: flex;
gap: var(--space-xl-32px);
}
.social-media-link {
color: white;
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
}