2023-03-27 11:39:24 +00:00
|
|
|
|
|
|
|
.footer {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
height: 170px;
|
|
|
|
|
2023-04-04 15:29:34 +00:00
|
|
|
background-color: #02114A;
|
2023-03-27 11:39:24 +00:00
|
|
|
}
|
|
|
|
.footer-brand-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
.footer-logo {
|
|
|
|
object-fit: cover;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
.footer-copyright-text {
|
|
|
|
font-size: 9px;
|
|
|
|
font-family: Inter;
|
|
|
|
color: white;
|
|
|
|
white-space: pre-line;
|
|
|
|
}
|
|
|
|
.footer-credit-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
gap: 3px;
|
|
|
|
}
|
|
|
|
.footer-credit {
|
|
|
|
font-size: 13px;
|
|
|
|
font-family: Inter;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-credit-url {
|
|
|
|
font-size: 13px;
|
|
|
|
font-family: Inter;
|
|
|
|
color: #04B2D9;
|
|
|
|
border-bottom: 1px solid #04B2D9;
|
|
|
|
}
|
|
|
|
.footer-credit-url:hover {
|
|
|
|
font-size: 14px;
|
|
|
|
cursor: pointer;
|
|
|
|
transition-duration: 0.4s;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
.footer-call-to-action-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 20px;
|
|
|
|
border-bottom: 2px solid white;
|
|
|
|
}
|
|
|
|
.footer-call-to-action-input {
|
|
|
|
background-color: rgba(255, 255, 255, 0);
|
|
|
|
border: 0;
|
|
|
|
font-family: Inter;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.footer-call-to-action-button{
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: Inter;
|
|
|
|
color: white;
|
|
|
|
border: 2px solid white;
|
|
|
|
}*/
|