import styled from 'styled-components' import {Link} from 'react-router-dom' export const FooterContainer = styled.footer` background-color: #101522; ` export const FooterWrap = styled.div` padding: 48x 24px; display: flex; flex-direction: column; justify-content: center; align-items: center; max-width: 1100px; margin: 0 auto; ` export const FooterLinksContainer = styled.div` display: flex; justify-content: center; @media screen and (max-width: 820px){ padding-top: 32px; } ` export const FooterLinksWrapper = styled.div` display: flex; @media screen and (max-width: 820px){ flex-direction: column; } ` export const FooterLinkItems = styled.div` display: flex; flex-direction: column; align-items: flex-start; margin: 16px; text-align: left; width: 160px; box-sizing: border-box; color: #fff; @media screen and (max-width: 420px){ margin: 0; padding: 10px; width: 100%; } ` export const FooterLinkTitle = styled.h1` font-size: 14px; margin-bottom: 16px ; ` export const FooterLink = styled(Link)` color: #ffffff; text-decoration: none; margin-bottom: 0.5rem; font-size: 14px; &:hover{ color: #01bf71; transition: 0.3s ease-in-out; } ` export const SocialMedia = styled.section` max-width: 1000px; width: 100%; ` export const SocialMediaWrap = styled.div` display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 20px auto 0 auto ; @media screen and (max-width: 820px){ flex-direction: column; } ` export const SocialAttrWrap = styled.div` color: #fff; display: flex; justify-content: center; align-items: center; max-width: 1100px; margin: 10px auto 0 auto ; @media screen and (max-width: 820px){ flex-direction: column; } ` export const SocialLogo = styled(Link)` color: #fff; justify-self: start; cursor: pointer; text-decoration: none; font-size: 1.5rem; display: flex; align-items: center; margin-bottom: 16px; font-weight: bold; @media screen and (max-width: 768px) { font-size: 20px; } ` export const WebsiteRights = styled.small` color: #fff ; margin-bottom: 8px ; ` export const SocialIcons = styled.div` display: flex; justify-content: space-between; align-items: center; width: 60px; margin-bottom: 8px ; ` export const SocialIconLink = styled.a` color: #fff; font-size: 24px; ` export const FooterImgWrap = styled.div` max-width: 555px; height: 100%; ` export const FooterImg = styled.img` width: 100%; margin-top: 0; margin-right: 0; margin-left: 10px; padding-right: 0; `;