* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

html, body {
    margin: 0;
    height: 100%;
    width: 100%;
}

body {
    background-color: black;
    color: white;
}

div {
    display: block;
}

#navbar-container {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    transform: translateY(0);
    transition: transform 0.3s ease;
    backdrop-filter: blur(100px);
    background: rgba(0,0,0,0.7);

}

#container.navbar {
    height: 60px;
    padding: 0 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    justify-items: center;
}

.navbar #navbar-left {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbar #navbar-center {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#navbar-center .navbar-items {
    align-items: center;
}

.navbar #navbar-right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#navbar-right .profile img {
    width: 40px;
    height: 40px;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
}

#navbar-right .search {
    width: 40px;
    height: 40px;
    align-items: center;
}

#navbar-right button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#navbar-right .search img {
    width: 30px;
    height: 30px;

    align-items: center;
}

.navbar-container {
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 9;
}

.mobile-navbar-container {
    display: none;
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    z-index: 10;
}

@media screen and (max-width: 600px) {
    .mobile-navbar-container {
        display: block;
    }
    .navbar-container {
        display: none;
    }
}

.navbar-items {
    width: 100%;
    margin: 0;
    padding: 1px 0;
    display: flex;
    align-items: center;
}

.navbar-items ul {
    margin-right: 30px;
}

/*.navbar-items ul li {
    list-style-type: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
} */

.navbar-items ul li .navbar-item {
    text-decoration: none;
    color: white;
    transition: 0.5s;
}

.navbar-items ul li .navbar-item:hover {
    color: #5A4FCF;
    transition: 0.5s;
}

#navbar-left .brand {
    text-decoration: none;
}

#navbar-left .brand span {
    color: white;
    text-decoration: none;
}

.mobile-navbar-items .brand {
    text-decoration: none;
}

.mobile-navbar-items .brand span {
    color: white;
    text-decoration: none;
}

#navbar-left .brand img {
    width: 40px;
    padding-top: 10px;
    padding-left: 0px;
    padding-bottom: 10px;
}

#navbar-left .divider {
    height: 50px;
    width: 2px;
    background-color: #9b94f1;
    margin-left: 10px;
    margin-right: 10px;
}

#navbar-left .brand2 img {
    width: 50px;
    padding-top: 10px;
    padding-left: 0px;
    padding-bottom: 10px;
}

.mobile-navbar-items .brand img {
    width: 40px;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
}

.dropdown {
    overflow: hidden;
}

.dropdown .dropdown-btn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    transition: 0.5s;
    margin: 0;
    background-color: transparent;
    list-style-type: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
    text-decoration: none;
}

.dropdown .dropdown-btn:hover {
    color: #5A4FCF;
    cursor: pointer;
    transition: 0.5s;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    width: 100%;
    left: 0;
    z-index: 1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-top: 20px;
}

.dropdown-content-container {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: rgba(0, 0, 0, 0.95);
}

.dropdown:hover .dropdown-content {
    display: block;
    transition: 0.5s;
}

.dropdown-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 32px 50px 32px;
    min-height: 15em;
}

.dropdown ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.dropdown h3 {
    width: 100%;
    text-align: left;
    color: white;
    font-size: 24px;
    white-space: nowrap;
    padding-bottom: 20px;
}

.dropdown ul li a {
    color: white;
    text-decoration: none;
}

.dropdown li:not(:first-child) {
    margin-top: 13px;
}

.dropdown-column a:hover {
    color: #5A4FCF;
}



.dropdown-row {
    padding: 1em 1em;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: stretch;
}

@media screen and (max-width: 600px) {
    .column {

        height: auto;
    }
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: black;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    text-align:center;
  }
  
  .sidenav a {
    padding: 8px 0 8px 0;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.2s;
    text-align: center;
  
  }
  
  .sidenav a:hover{
    color: #5a4fcf;
  }
  
  .closebtn {
    position: absolute;
    display: none;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }

  a.closebtn {
    color: white;
    text-decoration: none;
  }
  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

  #m-navbar-container {
    position: fixed;
    overflow: hidden;
    top: 0;
    width: 100%;
    z-index: 9;
    transform: translateY(0);
    transition: transform 0.3s ease;
    background: black;
    display: none;
}

.m-navbar #m-nav-items {
    display: none;
}

#container.m-navbar {
    height: 60px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#navbar-drop.m-navbar {
    text-align: center;
    display: none;
    margin-top: 60px;
}

@media screen and (max-width: 1200px) {
    .nav-item a.nav-btn {
        font-size: 10px;
        margin: 0 10px;
    }
    #container.navbar {
        display: none;
    }
    #navbar-left .brand img {
        width: 100px;
        height: 20px;
    }
    #navbar-left .brand2 img {
        width: 100px;
        height: 20px;
    }
    .featured-games-stuff h4 {
        font-size: 15px;
    }
    #m-navbar-container {
        display: flex;
    }
}

.m-brand img {

    height: 35px;


}

.m-brand {
    height: 35px;
    display: inline-block;
}

