:root {
    --darkBG: #111113;
    --textColor: #e5e5e6;
    --buttonBG: #1C1B1F;
    --textButton: #B7C4FF;
}

@font-face {
    font-family: 'ProximaNova-Bold';
    src: url('../fonts/2F377A_6_0.woff') format("woff");
}

@font-face {
    font-family: 'ProximaNova-Light';
    src: url('../fonts/2F377A_7_0.woff') format("woff");
}

@font-face {
    font-family: 'ProximaNova-Regular';
    src: url('#../fonts/2F377A_8_0.woff') format("woff");
}

html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
    color: var(--textColor);
}

html, body {
    background: var(--darkBG);
    color: var(--textColor);
    height: 100%;
}

.h1, h1 {
    font-size: 20px;
    font-family: "ProximaNova-Light", sans-serif;
    line-height: 1.2;
    color: var(--textColor);
}

.button {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0 12px; 
    min-width: 54px;
    min-height: 47px;
    border: none;
    vertical-align: top;
    text-align: center;
    text-overflow: ellipsis;
    font-size: 18px;
    line-height: 43px;
    cursor: pointer;
    width: 100%;
}

.button.button-ava {
    border-color: black;
    background-color: var(--buttonBG);
    color: var(--textButton);
    padding: 10px;
    border-radius: 30px;
}
    .button.button-ava:hover {
        border-color: #050506;
        background-color: #1d1d20;
        color: #e5e5e6;
        padding: 10px;
        border-radius: 30px;
    }

.sonosImg {
    width: 100%;
    height: auto;
}



