* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    width: 100%;
    height: 100dvh;
    justify-content: center;
    align-items: center;
    background: #212A2D;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.herotext {
    color: #FFF;
    text-align: right;
    font-family: "Instrument Sans";
    font-size: 24px;
    font-weight: 400;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.button, .a {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 64px;
    background: #7B00FF;
    color: #212A2D;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.b {
    background: none;
    border-radius: 64px;
    border: 2px solid #7B00FF;
    color: #7B00FF;
}