::-webkit-scrollbar {
    display: none;
}
/* Element styling */
* {
    font-family: system-ui;
    font-weight: lighter;
    color: white;
}
body {
    background-image: url(/images/leaguelandscape.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
h1 {
    font-weight: 350;
    font-size: 35px;
}
h2 {
    font-size: 33px;
}
p { 
    font-size: 30px;
}
hr {
    width: 70%;
    color: white;
}
sub {
    font-size: 16px;
}

ul li {
    list-style-position: inside;
    list-style-type: none;
    font-size: 30px;
}
a {
    text-decoration: none;
    cursor:default;
}


/* Class styling */
.main, .clist {
    background-color: rgba(0,0,0,0.3);
    text-align: center;
    width: 60%;
    height: 80%;
    margin: 0 auto;
    border-radius: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 5%;
    overflow: hidden;
    clear: both;
    margin-top: 8%;
}
.main p{
    padding-left: 50px;
    float: left;
}
.desc {
    width: 55%;
    float: left;
    padding-left: 20px;
}
.clist a:hover {
    font-weight: 700;
    font-size: 45px;
}
.clist li {
    margin-bottom: 1%;
    font-size: 40px;
}

.main img {
    float: right;
    margin-right: 20px;
    max-width: 35%;
    margin-top: 4%;
    opacity: 0.9;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, filter 0.3s ease;
    border-radius: 5px;
}
.main img:hover {
    border-color:rgba(255, 255, 255,0.7);
    filter: brightness(0.8); /* Darken the image slightly */
}
.main h1 {
    padding-bottom: 40px;
}
.btt {
    overflow: hidden;
    border-radius: 7px;
    display: inline;
    right: 5%;
    bottom: 10%;
    position: fixed;
}
.btt a {
    font-size: 22px;
    background-color:rgba(17, 89, 137,0.2);
    padding: 15px;
    text-align: center;
    transition: background-color 0.3s ease;
}
.btt a:hover {
    background-color:rgba(17, 89, 137,0.4);
}

/* Champion ID styling */
.main h1 {
    text-shadow: 1px 1px 4px black;
}
#swain  h1{
    text-decoration: underline;
    text-decoration-color: black;
    color: rgb(104, 11, 10);
    font-weight: 500;
}
#sylas h1 {
    color: rgb(12, 29, 77);
    font-weight: 500;
}
#ornn h1 {
    color: rgb(137, 24, 49);
    font-weight: 500;
}
#fiddlesticks h1 {
    color: rgb(87, 23, 18);
    font-weight: 300;
    font-style: italic;
}
#kindred h1 {
    color: white;
    text-decoration: underline;
    text-decoration-color: black;
    font-weight: 200;
}
#bard h1 {
    text-decoration: underline;
    text-decoration-color: rgb(177, 127, 54);
}
#asol h1 {
    color: rgb(55, 157, 159);
    font-weight: 500;
}
#volibear h1 {
    color: rgb(173, 211, 250);
    font-weight: 400;
}
#mordekaiser h1 {
    color: rgb(43, 48, 49);
    text-decoration: underline;
    text-decoration-color: rgb(42, 101, 80);
    font-weight: 400
}
#pantheon h1 {
    color: rgb(199, 123, 48);
    font-style: italic;
}
#jax h1 {
    color: rgb(146, 107, 162);
}
#ekko h1 {
    color: rgb(81, 180, 174);
}

/* Navigation bar styling */
.nav {
    overflow: hidden;
    border-radius: 4px;
    display: inline;
    top: 3%;
    right: 2%;
    position: fixed;
}

.nav a {
    float: right;
    color: white;
    text-align: center;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 22px;
    border-right: 1px solid white;
    transition: background-color 0.3s ease;

}
.nav a:first-child {
    border-right: none;
}

.nav a:hover {
    background-color: rgba(17, 89, 137,0.2)
}

#active {
    font-weight: 400;
    cursor: not-allowed;
    background-color: rgba(17, 89, 137,0.4)
}

/* Button styling */

.button {
    display: inline-block;
    border-radius: 4px;
    background-color: rgba(17, 89, 137,0.2);
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}