@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&family=Roboto:wght@100&display=swap');
/* to reset css */
*{
    padding:0;
    margin:0;
    box-sizing:border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    transition: 0.5s;
}
.main {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    width: 30rem; 
    /*height: 15rem;*/
    padding: 10px;
    border-radius: 10px;
    background-color: pink;
    font-size: 40px;
    text-align: center;
}
h5 {
    font-size: 25px;
}
button {
    margin-top: 5px;
    width: 100%;
    display: block;
    background-color: purple;
    border:none;
    color: white;
    border-radius: 5px;
    font-size: 35px;
}