| 1234567891011121314151617181920212223242526272829303132 |
- .home {
- background: #EDEDED;
- }
- .item {
- width: 92%;
- background: #FFFFFF;
- margin: 20px auto;
- padding: 30px;
- border-radius: 20px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .exit {
- width: 92%;
- background: red;
- position: absolute;
- bottom: 60px;
- left: 4%;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #FFFFFF;
- font-size: 28px;
- padding: 20px 0;
- border-radius: 10px;
- }
|