* {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    
    background: #131313;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.blick-right,
.blick-left {
    position: absolute;
    content: " ";
    background: rgba(114, 60, 235, .20);
    width: 30vh;
    height: 30vh;
    filter: blur(300px);
    border-radius: 100%;
}

.blick-left {
    left: -3%;
    top: -3%;
}

.blick-right {
    right: -3%;
    bottom: -7%;
}

.block {
    max-width: 420px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.container {
    padding: 30px;
    background: #171717;
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.block .title-block {
    padding: 15px;
    background: rgba(114, 60, 235, .15);
    border: 1px solid #723CEB;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.block .button {
    padding: 12px;
    border-radius: 15px;
    cursor: pointer;
    background: #723CEB;
    color: #fff;
    font-size: 18px;
    text-align: center;
    transition: background-color .25s ease;
}

.block .button:hover {
    background: #8652f7;
}


.block .button-purple {
    background: #723CEB;
}

.block .button-dark-purple {
    background: #5D36B3;
}