.left_content {
    width: 10%;
    height: 100%;
}

.right_content {
    width: 10%;
    height: 100%;
}

.HomePage_Content {
    border-radius: 10px;
    /*background-color:aqua;*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    overflow-y: auto;
}

.LandingPageContent {
    width: 80%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    overflow-y: auto;
    transition: all 0.6s ease;
}

.UpperContent {
    /*height: 38%;*/
    height: 35vh;
    width: 100%;
    display: flex;
    flex-flow: row;
    border-radius: 4px;
}

.InfoContentSection {
    height: 100%;
    width: 50%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.InfoDivision {
    height: 90%;
    width: 90%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.LandingTitle {
    font-size: 24;
    transition: all 0.6s ease;
}

.TopMessage {
    font-size: 14;
    transition: all 0.6s ease;
}

.CoreContent {
    height: 50%;
    width: 100%;
    padding: 4% 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 14px;
    transition: all 0.6s ease;
}

.ButtonLayout {
    height: 15%;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.buttons {
    height: 35px;
    width: 30%;
    min-width: 80px;
    max-width: 120px;
    padding: 5px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.InfoButtons {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    background: #5345B0;
    color: #fff;
    border-radius: 10px;

}

.InfoButtons:hover {
    background: #6757D6;
    transition: all 0.6s ease;
}


.TopImage {
    height: 90%;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

#GameListing {
    /*height: 40%;*/
    width: 97%;

    box-shadow: 0px 0px 20px 0px rgb(0, 0, 0);
    display: flex;
    flex-flow: column;
    border-radius: 4px;
    margin-left: 20px;
    margin-right: 20px;
}

.GameListingTitle {
    height: 5vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.SearchBar {
    height: 5vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

#GameSearch {
    height: 20px;
    width: 40%;
    background-color: rgb(134, 131, 128); 
    padding: 0 10px;
    border: 0px solid;
    outline: none;
    border-radius: 20px;
}

::placeholder {
    color: black;
    opacity: 1;
  }

#GamesLinks {
    height: 460px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    border-radius: 4px;
    padding: 0 2%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease; 
}


.GameCard {
    height: 430px;
    width: 340px;
    box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    z-index: 0;
    transition: all 0.3s ease;
}

.GameCard:hover {
    height: 440px;
    width: 350px;
    transition: all 0.3s ease;
}

.GameLogo{
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

#ShowMore {
    height: 5vh;
    width: 100%;
    border-top: 1px solid rgb(99, 95, 95);
    display: flex;
    align-items: center;
    justify-content: center;
}

#ShowLess {
    height: 5vh;
    width: 100%;
    border-top: 1px solid rgb(99, 95, 95);
    display: none;
    align-items: center;
    justify-content: center;
}

.ShowMoreButton{
    height: 80%;
    width: 100px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    background: #5345B0;
    color: #fff;
}

.ShowMoreButton:hover {
    background: #6757D6;
    transition: all 0.6s ease; 
}



.LowerContent {
    height: 18vh;
    /*height: 20%;*/
    width: 100%;
    display: flex;
    flex-flow: column;
    border-radius: 4px;
}


/*screen size adjusting*/

@media only screen and (max-width: 1750px) {

    .left_content{
        width: 0;
    }

    .right_content{
        width: 0;
    }

    .LandingPageContent {
        width: 100%;
        transition: all 0.6s ease;
    }

}

@media only screen and (max-width: 1700px) {

    

}

@media only screen and (max-width: 1600px) {

    

}

@media only screen and (max-width: 1400px) {

    

    #GamesLinks {
        grid-template-columns: repeat(3, 1fr);
    }


}

@media only screen and (max-width: 1200px) {

    

}

@media only screen and (max-width: 1100px) {

    #GamesLinks {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media only screen and (max-width: 1000px) {


}

@media only screen and (max-width: 900px) {

        
    

}

@media only screen and (max-width: 800px) {

    .TopMessage {
        font-size: 12;
    }
}

@media only screen and (max-width: 750px) {

    .CoreContent {
        height: 70%;
        font-size: 14px;
    }

    .LandingTitle {
        font-size: 20;
    }

    
}

@media only screen and (max-width: 700px) {

    .GameCard {
        height: 330px;
        width: 240px;
    }

    .TopImage {
        height: auto;
        width: 100%;
    }
}

@media only screen and (max-width: 550px) {

    .GameCard {
        height: 280px;
        width: 190px;
    }


    .CoreContent {
        height: 70%;
        font-size: 12px;
    }


    
}

@media only screen and (max-width: 400px) {

    .GameCard {
        height: 230px;
        width: 140px;
    }

    .InfoDivision {
        height: 100%;
    }

    .ButtonLayout {
        height: 30%;
        flex-direction: column;
    }

}

@media only screen and (max-width: 350px) {

    
}