.navbar {
    height: auto;
}

.navbar-wrapper {
    height: 120px;
    background: white;
    display: flex;
    box-sizing: border-box;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 35px;
}

.navbar-sitename {
    color: #000000;
    font-family: 'Squada One', cursive;
    font-size: 40px;
    line-height: 1;
    font-weight: bold;
}

.navbar-list {
    width: 100%;
    list-style: none;
    margin-top: 10px;
    padding: 0;
    display: flex;
}

.navbar-list li {
    font-family: 'Squada One', cursive;
    word-wrap: break-word;
    margin-left: 0px;
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.navbar-list li.active a,
.navbar-list li:hover a {
    background: #fd9800;
    color: white;
    text-decoration: underline;
    height: 100%;
    box-sizing: border-box;
}

.navbar-list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 8px;
    text-decoration: none;
    color: #000000;
    display: block;
    transition: background 0.5s;
}

main {
    background: radial-gradient(circle farthest-side at center, #010101, #272727);
    height: auto;
    text-align: center;
    padding: 20px 0;
}

.game-wrapper {
    background-color: #272727;
    opacity: 0.9;
    color: white;
    z-index: 2;
    padding: 10px 10px 0px 10px;
    text-align: center;
    position: sticky;
    top: 0px;
}

.game-name {
    font-family: 'Squada One', cursive;
    font-size: 24px;
}

.desc {
    font-family: 'Roboto Condensed', sans-serif;
    padding: 10px 0;
    font-size: 20px;
}

.streams-container {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: center;
    height: auto;
}

.stream-empty {
    margin: 27px;
    width: 320px;
}

.stream {
    margin-top: 30px;
    border: 10px solid;
    border-image-slice: 1;
    border-width: 3px;
    border-image-source: linear-gradient(to left, #fd302f, #f90);
    width: 320px;
    height: auto;
    margin: 25px 25px;
    background: #404040;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}

.stream:hover {
    transform: scale(1.1);
}

.stream-extra {
    padding: 5px 10px 5px 5px;
    display: flex;
    align-items: center;
}

.cover {
    width: 320px;
    height: 200px;
}

.stream-details {
    text-align: left;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
    font-size: 18px;
    white-space: nowrap;
    font-family: 'Roboto Condensed', sans-serif;
}

.stream-name {
    font-size: 14px;
    margin-top: 5px;
}

.stream-viewers {
    font-size: 14px;
    margin-top: 5px;
}

.toTop-arrow {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 33%;
    opacity: 0.6;
    background: #ffffff;
    cursor: pointer;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: none;
}

.toTop-arrow::before,
.toTop-arrow::after {
    width: 18px;
    height: 5px;
    border-radius: 3px;
    background: #f90;
    position: absolute;
    content: "";
}

.toTop-arrow::before {
    transform: rotate(-45deg) translate(0, -50%);
    left: 0.5rem;
}

.toTop-arrow::after {
    transform: rotate(45deg) translate(0, -50%);
    right: 0.5rem;
}

.toTop-arrow:focus {
    outline: none;
}

@media only screen and (min-width: 769px) {
    .navbar-wrapper {
        flex-direction: row;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-sitename {
        margin-right: 20px;
        margin-bottom: 0;
        font-size: 48px;
    }

    .navbar-list {
        width: auto;
        margin: 0;
    }

    .navbar-list li {
        margin-left: 35px;
    }

    .navbar-list li a {
        border-radius: 8px;
        padding: 12px 6px;
        font-size: 22px;
    }

    .game-wrapper {
        padding: 20px 10px 0px 10px;
    }

    .game-name {
        font-size: 32px;
    }

    .desc {
        padding: 20px 0;
        font-size: 26px;
    }

    .streams-container {
        flex-direction: row;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 12px;
        justify-content: center;
    }
}