Layout Done + Implemented mail service

This commit is contained in:
Fernando Videira
2024-01-16 23:51:38 +00:00
parent 75eab0da60
commit ff668b27b7
38 changed files with 1548 additions and 64 deletions
+48
View File
@@ -0,0 +1,48 @@
.footer{
width: 100%;
padding: 6rem 0;
background-color: rgba(19,19,19,0.8);
}
.footer-container{
max-width: 1140px;
margin: auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 40px;
}
.left{
height: 100%;
max-width: 100%;
display: flex;
flex-direction: column;
padding: 1rem;
}
.right{
height: 100%;
max-width: 100%;
display: flex;
flex-direction: column;
padding: 1rem;
}
.social{
margin-top: 1rem;
}
h4{
font-size: 1.2rem;
padding-bottom: 0.7rem;
}
p{
font-size: 1.2rem;
}
@media screen and (max-width: 640px) {
.footer-container {
grid-template-columns: 1fr;
}
}