.buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

button, 
.buttons a {
    border: 0;
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;    
}

button:hover, 
.buttons a:hover {
    opacity: 0.6;
}

button.primary,
.buttons a.primary {
    display: flex;
    padding: 10px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: #119DA4;
}

button.secondary,
.buttons a.secondary {
    display: flex;
    padding: 10px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: #7957C7;
}
