/* general */

body {
    gap: 0.5rem;
    background-image: url(miiversebackground.png);
}

.title{
     display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
    margin-top: 40px;
    font-weight: bold;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.navbar-left {
    display: flex;
    align-items: center;
}
.navbar-right {
    margin-right: 0;
    padding-right: 0;
}
span {
    background: linear-gradient(to bottom, #e3e3e3, #eeeeee);
    margin: 10px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid rgb(0, 255, 55);
    padding: 2px;
}
.manual-link {
    align-items: center;
}
    

.SelectedTab {
    border: 3px solid rgb(0, 255, 55);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.navbar{
background-color: rgba(240, 255, 255, 0.742);
border-bottom: 1px solid rgb(0, 255, 55);
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
padding-left: 20px;
padding-right: 20px;
box-sizing: border-box;
}


/* VideoPage */
/* VideoBox */
.video-box {
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    background-color: #ffffff9d;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    width: fit-content;
    width: 200px; height: 160px; overflow: hidden;
}

.video-author {
    font-size: 0.9em;
    color: #797979;
    margin-top: 4px;
}

.cover {
    border-radius: 7px 7px 0 0   ;
      width: 100%; height: 100%; object-fit: cover;
}

.videos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: left;
}



/* MiiTuberListPage */

.Mii-Box {
    border-radius: 7px;
    display: flex;
    flex-direction: row;
    align-items: start;
    margin-top: 10px;
    background-color: #ffffff9d;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    width: fill;
    padding: 5px;
    gap: 10px;
    border: #00ff40 1px solid;
}

.Mii-Icon {
    border-radius: 7px;
    height: 50px;
    width: 50px;
    border: #00ff40 1px solid;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.Mii-Info {
color: rgb(122, 122, 122);
font-size: 1em;
}

.Mii-Name
{
 display: flex;
    flex-direction: column;
}

.Mii-Name p {
    margin: 0;
}


/* ManualPage */

.Manual-Intro {
    margin-top: 10px;
    background-color: #ffffff9d;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    width: fit-content;
    padding: 20px;
    border-radius: 7px;
   border: 1px solid rgb(0, 255, 64);
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.Manual-Intro > * {
    margin: 0;
}

.Manual-Article {
    margin-top: 20px;
    width: fit-content;
    font-size: 20px;
}


/* Manual articles */
.Manual-Article-Text{
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
    border: 1px solid rgb(0, 255, 64);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 10px;
}

.Manual-exaple-image {
    height: fill;
    max-height: 200px;
    max-width: 400px;
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
    border: 1px solid rgb(0, 255, 64);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    border-radius: 5px;
}

.secretQRcode {
width: fill;
max-width: 750px;
}