@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body, html {
    background-color: #f9f9f9;
    color: #202020;
}

a {
    text-decoration: none;
    color: #202020;
}

button {
    background-color: #000;
    border: 0;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: .3s ease all;
    color: #fff;
    font-size: 16px;

    &:hover {
        opacity: .8;
    }
}

input {
    border: 1px solid #000;
    border-radius: 8px;
    padding: 12px;
    background: none;
    &:focus {
        outline: none;
    }

    &::placeholder {
        color: #000;
    }
}