*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--background);

    font-family:'Poppins',sans-serif;

    color:var(--text);

    overflow-x:hidden;

}

button,
input,
textarea{

    font-family:inherit;

}

img{

    display:block;

    max-width:100%;

}

.hidden{

    display:none !important;

}

.page{

    min-height:100vh;

}

.card{

    background:#fff;

    border-radius:20px;

    box-shadow:var(--shadow-small);

}