@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;1,300&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
    margin     : 0;
    padding    : 0;
    max-height : 100vh;
    box-sizing : border-box;
}

body {
    height          : 100vh;
    height          : -webkit-fill-available;
    overflow-x      : auto;
    overflow-y      : hidden;
    color           : #f8f9fa;
    background-color: #f8f9fa;
    font-size       : 1em;
}

.errorMsg {
    color  : #f04040;
    display: none;
}

#rightside h1,
h2 {
    color     : #3b3b3b;
    text-align: center;
}

#leftside h1,
h2 {
    color     : #f8f9fa;
    text-align: center;
}

/* style the container */

.container {
    position        : relative;
    border-radius   : 5px;
    background-color: #cacaca;
    padding         : 20px 0 30px 0;
}

h2 {
    color: #3b3b3b;
}

.backgroundColor {
    background-color: #016494;
    width           : 30%;
    height          : 100vh;
    float           : left;
}


.leftContainer {
    background-color: #0085c5;
    width           : 30%;
    height          : 100%;
    float           : left;
}

#patch {
    position: absolute;
    color   : white;
    bottom  : 0px;
}

#rightside {
    overflow-y    : auto;
    /* position   : absolute; */
    left          : 30%;
    width         : 70%;
    height        : 100%;
    margin        : 0 !important;
    align-items   : center;
    color         : #3b3b3b;
    padding       : 2% 10%;
}

hr {
    margin-top   : 1px !important;
    border-top   : 4px solid #cacaca;
    border-radius: 3px;
}

#leftside {
    font-size: 20px;
    position : absolute;
    top      : 4.8%;
    left     : 3%;
}

/* #patchnotes {
    top     : 5%;
    color   : #3b3b3b;
    right   : 25%;
    position: absolute;
} */

ol {
    align-self: center;
}

ol li::marker {
    content: ""
}

#leftside ol ul li
{
    cursor:pointer;
}

ul li::marker {
    content: ""
}

#list {
    margin-right: 50px;
}

.fas {
    margin-left: 25px;
    font-size  : 1em;
}

#title {
    font-size: 20px;
}

#homebtn {
    position : relative;
    top      : 95%;
    font-size: 30px;
    color    : #f8f9fa;
}

#homebtn:hover {
    color: #fe5000;
}

@media only screen and (max-device-width: 600px) and (orientation: portrait) { 

    .backgroundColor {
        height: 100%;
    }

    #leftside h1 {
        font-size: 24px;
        margin-left: -8px;
        font-weight: bold;
    }

    #leftside {
        font-size: 18px;
        position: absolute;
        top: 1em;
        left: 3px;
    }

    #leftside ul .fas{
        margin-left: 0px;
        font-size: 10px;
    }

    #leftside li{
        margin-bottom: 10px;
    }

    #homebtn .fas{
        margin-left: 5px;
    }

    #rightside {
        padding-top: 2%;
        padding-right: 3%;
        padding-left: 3%;
        padding-bottom: 0%;
    }

    #rightside ul{
        font-size: 15px;
    }

    /* #rightside ul li{
        padding-bottom: 0.5em;

    } */

    #rightside ul .fas{
        margin-left: 0px;
    }
    
    #title {
        font-size: 20px;
        margin-top: -10px;
    }
        
    
}

@media screen and (min-width:320px) and (max-width:873px) and (-webkit-min-device-pixel-ratio: 1) and (orientation:landscape) {
    .backgroundColor {
        overflow: auto;
    }

    #homebtn{
        top: 71%;
    }

    #rightside ul{
        overflow: auto;
    }

    #leftside {
        font-size: 20px;
        position: absolute;
        top: 4.8%;
        left: 3%;
        max-height: 210px;
        overflow-y: auto;
    }
}

@media only screen and (max-width: 400px) {
    #rightside ul{
        font-size: 15px;
        overflow: auto;
    }

}