::-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: grab;
}


/* Class styling */
.main {
    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;
    padding-right: 50px;
}
.desc {
    width: 55%;
    float: left;
    padding-left: 20px;
}
.main img {
    float: right;
    padding-right: 20px;
    width: 35%;
    vertical-align: middle;
}
.main h1 {
    padding-bottom: 40px;
}
.hyperlink {
    color: lightblue;
}
.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)
}

/* 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)
}

#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;
}