html {
    box-sizing: border-box;
}

html * {
    box-sizing: inherit;
}

html,
body {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background-color: #1C1F23;
    background-image: url('bg.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.gr-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.gr-intro__inner {}

.gr-intro__inner > svg {
    width: 100%;
    height: 15vw;
    min-height: 120px;
    max-height: 200px;
}

.gr-intro__inner h3 {
    margin: 0;
    padding-top: 25px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    color: #727984;
}

.gr-intro__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 25px;
}

.gr-intro__action {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 40px;
    height: 40px;
    background-color: #727984;
    border-radius: 50%;
}

.gr-intro__action svg {
    width: 100%;
    height: 16px;
}

.gr-copyright {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
    font-size: 12px;
    text-transform: uppercase;
    color: #727984;
}
