* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --text-color: #F8F8FF;
    --sec-text-color: #d3d3d3;
    --third-text-color: #b8b8b8;
}
html {
    overflow-x: hidden;
    overflow-y: scroll;
}
/* FONT */

.noto-sans-bold {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
            "wdth" 100;
}
.noto-sans-regular {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
            "wdth" 100;
}
.noto-sans-thin {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
            "wdth" 100;
}
/*IDK WHY I ADDED A COMMENT, BUT U KNOW WHAT THIS FOR*/
body{
    background-color: #121212;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/*START OF CONTENT STYLING*/
.navbar{
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.26);
    width: 100%;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(5px);
    z-index: 1000;
}
#logo{
    width: 3rem;
    border-radius: 100px;
    transition: 0.3s ease-in-out;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}
nav ul li a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
}
nav ul li a.discord:hover::after {
    width: 0 !important;
}
.discord{
    color: #7289DA !important;
}

.announcement {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
}
.announcement-title h1{
    color: var(--text-color);
    letter-spacing: 10px;
}
.announcement-title p{
    color: var(--sec-text-color);
    letter-spacing: 1px;
    font-size: 1rem;
}
.announcement-content {
    gap: 2rem;
}
.card-body  h5{
    color: var(--text-color);
}
.card-body p{
    color: var(--sec-text-color);
}
.text-muted {
    position: absolute;
    bottom: 5%;
    left: 15%;
    width: 100%;
    text-align: center;
}

.rider{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
}

.rider-content h2{
    color: var(--text-color);
    letter-spacing: 10px;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.rider-content p{
    color: var(--sec-text-color);
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 0;
}

.carousel-inner {
    padding: 1em;
}
.card-blog{
    border-radius: 16px;
    background-color: #403f3f;

}
.card-blog h5{
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0;
}
.card-blog p{
    color: var(--sec-text-color);
    font-size: 1rem;
    margin-bottom: 0;
}
.btn-blog{
    color: var(--text-color);
    background-color: rgba(255, 4, 4, 0.78);
    transition: 0.3s ease-in-out;
    width: 50%;
}
.card-transparent{
    align-items: center;
    background-color: transparent;
}
.card img{
    justify-content: center;
    width: 15rem;
    border-radius: 16px;
}
.carousel-control-prev,
.carousel-control-next {
  background-color: #e1e1e1;
  width: 6vh;
  height: 6vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.bike{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;

}
.bike h2{
    color: var(--text-color);
    letter-spacing: 10px;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.bike-content{

    gap: 4rem;
}
.bike p{
    color: var(--sec-text-color);
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 0;
}

.bike-text ul{
    margin-top: 3rem;
    text-align: left;
    color: var(--third-text-color);
    letter-spacing: 1px;
    font-size: 1.2rem;
}










.footer{
    justify-content: center;
    background-color: #303030;
    color: white;
    margin-top: auto;
    width: 100%;
    padding: 20px 0;
}
.footer-content {
    margin-top: 2%;
}
.footer a{
    list-style: none;
    text-decoration: none;
    color: white;
}
