* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {

    height: fit-content;
    background-color: #0b0a1b;
    position: relative;
}

.gradient-background {
    background: linear-gradient(300deg, #348693, #fd920a, #b62e15);
    background-size: 100% 100%;
    animation: gradient-animation 18s ease infinite;
  }

.nav-link {
    border-radius: 8px;
}

.nav_option:hover, .nav_option:active {
    background-color: #f1ba00;
}

.main-container {
    display: flex;
    margin-top: 0px;
    margin-bottom: 0px ;
    height: 400px;
    max-width: 100%;
}

.ksv_background {
    transform: rotate(15deg);
    max-width: 100%;
    max-height: 500px;
    height: auto;
    width: auto;
}

.joesley_logo {
    height: 50px;
}

.white_text {
    color: white;
}

.logos {
    height: 100px;
    border-radius: 10%;
}

.x_btn {
    background-color: transparent;
    border: 0px;
}

.member-card {
    display: flex;
    color: white;
    padding: 20px;
    border-radius: 15px;
    flex-wrap: wrap;
}

.member_card_l {
    display: flex;
    flex-direction: row;
    background-color: #151540;
}

.member_card_r {
    display: flex;
    flex-direction: row-reverse;
    background-color: #ef1837;
}

.member_card_c {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #8216BB;
}

.members_img_l {
    height: 200px;
    width: 150px;
    border-radius: 5%;
    float: left;
}

.members_img_r {
    height: 200px;
    width: 150px;
    border-radius: 5%;
    float: right;
}

.members_img_c {
    height: 200px;
    width: 150px;
    border-radius: 5%;
    float: center;
}

.member_fav_pkm {
    opacity: 0.9;
    max-height: 80px;
    max-width: 80px;
    width: auto;
    height: auto;
    overflow: hidden;
    margin: 10px;
}

#about_us, #sponsors, #results {
    background-color: #348693;
}

.toTop {
    width: 50px;
    height: 50px;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: black;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 10px;
    cursor: pointer;
}

.toTop a{
    color: white;
    text-decoration: none;
}