@import url('https://fonts.googleapis.com/css2?family=Belanosima:wght@600;700&family=Caprasimo&family=Maven+Pro:wght@500;600;800;900&family=Noto+Sans+JP:wght@200;300;400;500;600;700;800;900&family=PT+Sans+Caption:wght@700&family=Poppins:ital,wght@1,100;1,200&family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,500;0,700;0,900;1,100;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    height: 100%;
    width: 100%;
    margin-top: 20px;
    /* background: #ebeef1; */
    /* background-color: rgb(221, 240, 243); */
    display: flex;
    flex-direction: column; 
    /* Arrange items in a column */
    align-items: center;
    justify-content: center;

}

button {
    font-size: 32px;
    
    font-weight: 500;
    padding: 20px;
    margin: 10px 0; /* Adjust margin between buttons */
    width: 350px;
    background: #ebeef1;
    border: none;
    cursor: pointer;
    font-weight: 10px;
    /* text-underline-offset: none; */
    border-radius: 25px;
    color: #00a037;
    
    box-shadow: 10px 10px 10px -1px rgba(10, 99, 169, 0.16),
        -10px -10px 10px -1px rgba(255, 255, 255, 0.70);
}
.button-link {
    text-decoration: none; /* Remove underlines from links */
    color: #00a037; /* Set the color for the link */
}
button:hover{
    background-color:  rgb(15, 235, 26);
}

button i {
    margin-right: 20px;
}
h2{
    font-size: 50px;
    color:red;
}
h2:hover{
    color: rgb(23, 23, 1);
}