html {
    overflow-y: scroll;
}

@font-face {
    font-family: 'RivieraNightsRegular';
    src: url('./fonts/RivieraNights-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'RivieraNightsLight';
    src: url('./fonts/RivieraNights-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

.site-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e4e4e4;
}

.site-header .wrapper {
    max-width: 980px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.site-header .logo img {
    display: block;
    height: 50px;
    width: auto;
}

.site-header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.site-header nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-family: RivieraNightsRegular, 'RivieraNightsRegular', Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.2;
}

.site-header nav a:hover {
    color: #6d30a7;
}
