Tess

Tess
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap'); *{ margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } body{ display: flex; align-items: center; justify-content: center; min-height: 100vh; background: #ecf0f3; } .wrapper, .wrapper .img-area, .social-icons a, .buttons button{ background: #ecf0f3; box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1; } .wrapper{ position: relative; width: 350px; padding: 30px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-direction: column; } .wrapper .icon{ font-size: 17px; color: #31344b; position: absolute; cursor: pointer; opacity: 0.7; top: 15px; height: 35px; width: 35px; text-align: center; line-height: 35px; border-radius: 50%; font-size: 16px; } .wrapper .icon i{ position: relative; z-index: 9; } .wrapper .icon.a…

Post a Comment