*{ margin: 0; padding: 0; user-select: none; box-sizing: border-box; } .box { background-color: white; padding-top: 35px; padding: 35px; border: 2px solid black; box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19); } body{ background-color: purple; justify-content: center; align-items: center; display: flex; min-height: 100vh; } .box h2 { margin-bottom: 45px; text-align: center; font-size: 30px; color: black; font-family: sans-serif; } #button{ font-family: sans-serif; font-size: 18px; margin-top: 45px; border: 2px solid black; width: 160px; height: 55px; background-color: purple; display: flex; border-radius: 10px; cursor: pointer; color:rgb(255,255,255); justify-content: center; align-items: center; } #button:hover{ color: white; box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19); } .btn2 { margin-left: 90px; } input::placeholder{ font-size: 25px; } input{ padding: 25px; user-select: none; height: 55px; width: 400px; border-radius: 8px; border: none; border: 2px solid black; outline: none; font-size: 25px; }