body, html{
    min-height: 100%;
    min-width: 100%;
    padding: 0;
    margin: 0;
    
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    color: white;

    --PDarkBlue: #281C2D;
    --PVibrantBlue: #8155BA;
    --PFieryOrange: #695E93;
    --PInfoPurple: #37314e;

    --SLightGray: #777780;
}

.container{
    height: 100%;
    width: 100%;
}



.banner{
    background-color: var(--PDarkBlue);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;

    font-size: 30px;
}

#parent{
    position: relative
}

.gameplay{
    width: 1500px;
    border-radius: 20px;
}

.logo{
    width: 400px;
    position: absolute;
    left: 750px;
    top: 70px;
}


.content{
    display: flex;
}

.clickinfo{
    width: 250px;
    background-color: var(--PInfoPurple);
}

.clickinfo ul{
    list-style: none;
}

.clickinfo ul li a{
    color: white;
    text-decoration: none;

    font-size: 24px;
}

.clickinfoText{
    display: flex;
    flex-direction: column;

    background-color: var(--PFieryOrange);
    border-radius: 25px;

    margin: 10px;

    box-shadow: 10px 10px 10px var(--PDarkBlue);
}

.clickinfo ul li a:hover{
    background-color: white;
    color: black;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 5px 5px 5px var(--PDarkBlue);
    transition: 0.3s;
}

.info{
    background: rgb(129,85,186);
    background: linear-gradient(90deg, rgba(129,85,186,1) 0%, rgba(111,0,255,1) 100%);
    flex: 1;
}

.info h1{
    font-size: 34px;
    font-weight: 600;
}

.info h2{
    font-size: 26px;
    font-weight: 600;
}

.info p{
    font-size: 20px;
    font-weight: 400;
}

.install{
    display: flex;
    flex-direction: column;

    background-color: var(--PFieryOrange);
    border-radius: 25px;

    margin: 20px;
    padding: 20px;

    box-shadow: 15px 15px 15px var(--PDarkBlue);
}
.installText{
    margin: 20px;
}
.pop:hover{
    transform: scale(1.01);
    transition: 0.1s;
}

.play{
    display: flex;
    flex-direction: column;

    background-color: var(--PFieryOrange);
    border-radius: 25px;

    margin: 20px;
    padding: 20px;

    box-shadow: 15px 15px 15px var(--PDarkBlue);
}
.playText{
    margin: 20px;
}


.characters{
    display: flex;
    flex-direction: column;

    background-color: var(--PFieryOrange);
    border-radius: 25px;

    margin: 20px;
    padding: 20px;

    box-shadow: 15px 15px 15px var(--PDarkBlue);
}
.charactersText{
    margin: 20px;
}

.text1{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer{
    background-color: black;
}


.sticky{
    position: sticky;
    top: 20px;
}
