File size: 454 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import styled from "styled-components";
export const Container = styled.div`
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
width: 100vw;
background-color: #1db954;
gap: 5rem;
img {
height: 20vh;
}
button {
padding: 1rem 5rem;
border-radius: 5rem;
background-color: black;
color: #49f585;
border: none;
font-size: 1.4rem;
cursor: pointer;
}
`;
|