* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Segoe+UI&display=swap');

body,
html {

    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url(https://cms-assets.xboxservices.com/assets/44/93/44931ad0-6dd0-433e-b3e5-e94d19f080cd.jpg?n=0091888_Page-Hero-1084_1920x1080.jpg);
    background-position: center;
    background-size: cover;
    color: white;
}

    /* <!--  NAV BAR SECTION --> */


nav {
    width: 100%;
    height: 100px;
    display: flex;
    /* align-items: center; */
    flex-direction: row;
    padding: 10px 40px;
    /* background-color: rgb(212, 200, 200); */
    position: relative;

    /* background: rgba(0, 0, 0, 0.65); */
}


/*  LOGO SECTION IMAGE */


nav .logo {
    width: 250px;
    height: 50px;
    /* background-color: red; */
    display: flex;
    justify-content: center;
    /* align-items: center; */
    gap: 12px;
    position: absolute;
    top: 0px;
}

nav .logo img {
    /* position: absolute; */

    height: 80px;
    width: 170px;
    padding-bottom: 30px;
    /* height: 26px; */
}
/*  NAV BAR LIST SECTION */

nav .menu {
    display: flex;
    gap: 20px;
    margin-left: 300px;
    font-weight: 600;
}

nav .menu>div {
    position: relative;
    cursor: pointer;
}

nav .menu>div:hover::after {
    /* content: "▼"; */
    font-size: 10px;
    margin-left: 5px;
}


/*  NAV BAR RIGHT SECTION */


nav .right-menu {
    margin-left: auto;
    display: flex;
    /* align-items: center; */
    gap: 20px;
}

nav .right-menu .search,
nav .right-menu .cart,
nav .right-menu .profile {
    cursor: pointer;
    /* font-size: 20px; */
}

/* Main content */


.main-content {
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    /* background: rgba(0, 0, 0, 0.5; */
}

.now-available {
    background-color: #F00508;
    color: rgb(0, 0, 0);
    padding: 4px 12px;
    font-weight: 700;
    font-size: 14 px;
    margin-bottom: 15px;
    display: inline-block;
}

.game-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 25px;
}


/*  BUTTON GROUPS  */

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 10px 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    color: white;
    text-transform: uppercase;
    border-radius: 2px;
}

.btn-join {
    background-color: #F00508;
    font-size: 15px;
    font-weight: 900;
    color: rgb(0, 0, 0);
}

.btn-join:hover {
    cursor: pointer;
    text-decoration: underline;


}

.btn-get {
    background: none;
    border: none;
    color: #e81123;
    font-size: 15px;
    font-weight: 900;
}

.btn-get:hover {
    text-decoration: underline;
}

/* Red symbol above the "Now Available" */

.symbol {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
    font-size: 64px;
    color: #e81123;
    user-select: none;
    font-weight: 900;
}