html, body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #FFFFFF;
    font-weight: 400;
}

p {
    margin: 0;
    color: #FFFFFF;
}

a {
    text-decoration: none;
    color: #FFFFFF;
}

input, textarea {
    border: none;
    outline: none;
    background: transparent;
    color: #FFFFFF;
}

button {
    color: #fff;
    border: none;
    outline: none;
    transition: 0.2s;
}

button:enabled {
    cursor: pointer;
}