@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #000;
}

body {
    /* font-family: "Roboto", sans-serif; */
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    height: 100dvh;
}

select:hover {
    cursor: pointer;
}

button {
    transition: 0.3s all;
}

button:hover {
    cursor: pointer;
    transform: translateY(-3px);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px black inset !important;
}

input:-webkit-autofill {
    -webkit-text-fill-color: #fefefe !important;
}