@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    font-weight: 400;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 500;
    padding-left: 2em;
    padding-right: 2em;
    background-color: #422564;
    border-color: #422564;
}

.btn:hover {
    background-color: #9c54ee;
    border-color: #9c54ee;
    color: #ffffff;
}
  
.btn:focus, .btn.focus {
    background-color: #bd8df5;
    border-color: #bd8df5; 
    color: #ffffff;
}

.btn img {
    vertical-align: middle;
    border-style: none;
}