* {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: rgb(253, 253, 253);
}


a {
    text-decoration: none;
    font-weight: 500;
    color: #000;
}

ul {
    padding: 0;
    list-style-type: none;
}

button {
    background: rgb(10, 10, 10);
    border: none;
    color: #ececec;
    padding: 12px 40px;
    border-radius: 5px;
    margin-top: 28px;
    cursor: pointer;
    box-sizing: border-box;
    font-weight: 700;
}

button:hover {
    background: rgb(0, 0, 0);
    transition: all 0.5s;
}

@media (max-width: 768px) {
    button {
        width: 100%;
    }
}

/* .button {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
} */