body{
    background-color: rgb(56, 64, 71);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    overflow-wrap: anywhere;
    margin: 0px;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

#tutorialLogo{
    width: 20rem;
    border: 5px solid black;
    border-radius: 40px;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.center{
    align-items: center;
    text-align: center;
    justify-content: center;
}


#title{
    color: white;
    font-size: 3rem;
}

#notice{
    color: white;
    font-size: 1.15rem;
}
#notice u{
    font-size: 1.3rem;
}

#homeBtn{
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.subtitle{
    color: white;
    font-size: 1.75rem;
    margin-bottom: 10px;
}
.trickSubtitle{
    color: rgb(255, 0, 221);
    font-size: 1.6rem;
    text-decoration: underline;
    margin-left: 3%;
}
h4{
    color: white;
    font-size: 1rem;
}

.dropdown{
    cursor: pointer;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fill, max(18%, 200px));
    padding: 10px;
}
.container h3 {
    color: white;
    font-size: 65%;
}
.container div {
    padding: 10px;
    padding-bottom: 75px;
    height: 200px;
    font-size: 30px;
}
.container img {
    width: 100%;
    object-fit: fill;
    border: rgb(255, 255, 255) 3px solid;
    border-radius: 10px;
}


#routesContainer h2{
    color: white;
}
#routesContainer div{
    margin-bottom: 75px;
}

#category-guides-videos{
    display: grid;
}
#tricks-videos{
    display: none;
}
#movement-videos{
    display: none;
}
#misc-videos{
    display: none;
}
#routesList{
    display: none;
}

button{
    font-weight: bold;
    font-size: 1.4rem;
    color: rgb(255, 255, 255);
    background-color: rgb(185, 0, 158);
    border: 3px solid black;
    border-radius: 20px;
    padding: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
button:hover{
    background-color: rgb(158, 0, 134);
}
button:active{
    background-color: rgb(122, 0, 104);
}


dialog .wrapper{
    padding: 16px;
    justify-content: center;
    align-items: center;
    text-align: center;  
}
dialog{
    /* remove scrollbar */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    border: 5px solid rgb(20, 3, 45);
    background-color: rgb(47, 3, 77);
}
/* remove scrollbar */
dialog::-webkit-scrollbar {
    display: none;
}

a{
    color: rgb(255, 0, 216);
    font-weight: bold;
}
a:hover{
    color: rgb(182, 0, 155);
}
a:active{
    color: rgb(150, 0, 127);
}