@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;700&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    outline: none;
    text-decoration: none;
    color: #fff;
    background-color: #2595f6;
    padding: 20px 40px;
    border-radius: 4px;
    position: relative;
    font-size: 1rem;
    transition: 100ms;
}

.btn:hover {
    background-color: #277dc9;
}

.badge {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
}