html {
    font-size: 12pt;
    font-family: "Roboto", serif;
}

body {
    width: 100vw;
    height: 100vh;
    overflow-x: clip;
    overflow-y: clip;
    padding: 0;
    margin: 0;
    word-wrap: break-word;
    line-height: 1.75;
    font-size: 1em;
}

.main {
    width: 100%;
    height: 100%;
    background: #000e1f;
    background: linear-gradient(36deg, rgb(0, 11, 25) 0%, rgb(37, 43, 51) 100%);
    filter: brightness(90%);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {

}

.inner {
    width: 30rem;
    margin: 2rem;
    font-size: 1em;
}

.buttons-list {
    display: flex;
    margin: 0;
    padding: 1rem 0;
    justify-content: flex-start;
}

.buttons-list > li > a {
    display: flex;
    height: 3.75rem;
    vertical-align: middle;
    line-height: 3.75rem;
    padding: 0 1.875rem;
    border-radius: 1rem;
    font-size: 1.125em;
    align-items: center;
    text-decoration: none;
    transition: all 0.25s ease;
    justify-content: space-between;
}

.buttons-list > li > a:hover {
    transform: scale(1.025);
    /*filter: brightness(120%);*/
}

.buttons-list > li > a > .label {
    width: 100%;
    flex-grow: 1;
    flex-shrink: 1;
}

ul {
    list-style: none;
}

li {
    display: list-item;
    width: 100%;
}

.title {
    font-size: 2.75em;
    color: #dddddd;
    padding: 0;
    margin: 0;
}

.text {
    color: #bbbbbb
}

.btn-grad {
    background-image: linear-gradient(to right, #283048 0%, #575d63 51%, #283048 100%);
}

.btn-grad {
    transition: 0.5s;
    background-size: 200% auto;
    color: #bbbbbb;
}

.btn-grad:hover {
    background-position: right center;
    color: #bbbbbb;
}